redux-form fire action更改值但不更改输入值

时间:2018-04-16 07:27:02

标签: reactjs redux redux-form

我使用简单形式的redux-form。我可以看到更改字段的触发操作的日志,但是输入字段本身没有显示更改。似乎redux-form无法改变输入值。我使用的是React版本16.3。

[更新]

我正在使用exact sample redux-form文档。

1 个答案:

答案 0 :(得分:2)

我怀疑你没有将redux-form与商店联系起来。我有同样的问题。这段代码很重要。

import { createStore, combineReducers } from 'redux'
import { reducer as formReducer } from 'redux-form'

const rootReducer = combineReducers({
  // ...your other reducers here
  // you have to pass formReducer under 'form' key,
  // for custom keys look up the docs for 'getFormState'
  form: formReducer
})

const store = createStore(rootReducer)