如何处理react redux中的复选框事件?

时间:2016-11-16 17:33:36

标签: reactjs checkbox react-redux

当用户选中复选框时,我必须重定向到另一个页面。 我是react-redux的新手。现在,我所知道的只是处理提交 按钮通过调度,但我想知道如何处理 复选框动作?

    export default class myReportForm extends BaseForm {


            return(


                    </form>
                </div>        
        );

        }
    }

    Through handleSubmit in form, I could able to handle submit action. Can any one tell me how to handle checkbox . For example, when I ever click on Afloat , It should redirect me to another page or atleast some action should happen.

1 个答案:

答案 0 :(得分:3)

mapStateToProps mapDispatchToActions 是辅助函数,它们将组件连接到redux存储。 mapStateToProps 将组件的属性链接到状态, mapDispatchToActions 将其事件链接到可以分派的操作。

http://redux.js.org/docs/basics/UsageWithReact.html#container-components

一如既往(我总是推荐这个!)看看:

https://egghead.io/lessons/javascript-redux-generating-containers-with-connect-from-react-redux-visibletodolist(整个课程及其后续工作 - Idiomtic Redux - 很棒)。