2016年4月27日

react-redux 记录

摘要: react-redux提供两个关键模块:Provider和connect。 Provider Provider这个模块是作为整个App的容器,在你原有的App Container的基础上再包上一层,它的工作很简单,就是接受Redux的store作为props,并将其声明为context的属性之一,子 阅读全文

posted @ 2016-04-27 23:15 wuye1200 阅读(128) 评论(0) 推荐(0) 编辑

redux

摘要: 1、Redux简介 在Redux中,最为核心的概念就是 state、action 、reducer 以及 store。 1、action:动作 2、state: 状态 3、reducer Reducer 是一个普通的回调函数。 当它被Redux调用的时候会为他传递两个参数State 和 Action 阅读全文

posted @ 2016-04-27 18:42 wuye1200 阅读(131) 评论(0) 推荐(0) 编辑

导航