我无法在表单字段中输入任何内容。我搜索了解决方案,但没有找到解决问题的方法。看看类似的问题,它可能是一个减速器问题。那么我做错了什么?
使用:react 15.4.2,redux-form 6.5.0,react-router 3.0.2
LoginForm.js
const createStoreWithMiddleware = applyMiddleware(thunk)(createStore);
// temp
const Dashboard = () => { return <div>Dasboard</div> };
ReactDOM.render(
<Provider store={createStoreWithMiddleware(combinedReducers)}>
<Router history={browserHistory}>
<Route path="/" component={LoginForm} />
<Route pathp="dashboard" component={Dashboard} />
</Router>
</Provider>
,
document.getElementById('app')
);
reducers.js
www-data
index.js
{{1}}
答案 0 :(得分:0)
好的,我仍然不知道出了什么问题,但在我重新安装了react,react-redux和redux-form之后,一切都运转了。
Tnx到@DeividasKaržinauskas寻求帮助和时间。感谢他的回答,我知道代码是好的,而且必须是别的东西。