嗨我有一个动作设置,但它不断变化,我需要重构它以配合Redux动作。
将两者迁移到redux都会受到高度赞赏。
答案 0 :(得分:1)
从评论中回答你的questino;
如何在reducer中使用我的绑定函数和redux?我怎么会在redux中发现这个#("更改")?
在redux中,您将组件连接到Redux状态,如下所示:
ReduxEnabledComponent = ReactRedux.connect(
function(state) {
return {
someProp: state.someProp
},
{
someAction: function(){
return {type: 'action_type', data: {}}
}
}
)(Component);
上面的代码将采用名为Component
的组件并将其连接到Redux Store。此组件将接收someProp
的道具,它是Redux商店的值,以及someAction
,这是一种用于向商店发送请求的方法。