Tekkaman

导航

 

2017年4月29日

摘要: 【combineReducers】 Redux provides a utility called combineReducers(). The following two diagram has the same effect. You could also give them different 阅读全文
posted @ 2017-04-29 23:24 Tekkaman 阅读(179) 评论(0) 推荐(0) 编辑
 
摘要: 【React Context】 1、Why Not To Use Context The vast majority of applications do not need to use context. 大多数应用不需要使用context。 If you want your application 阅读全文
posted @ 2017-04-29 21:03 Tekkaman 阅读(746) 评论(0) 推荐(0) 编辑
 
摘要: 【propTypes】 React.PropTypes is deprecated as of React v15.5. Please use the prop-types library instead. You can define default values for your props b 阅读全文
posted @ 2017-04-29 17:47 Tekkaman 阅读(193) 评论(0) 推荐(0) 编辑
 
摘要: 【Redux】 1、Redux 的设计思想 (1)Web 应用是一个状态机,视图与状态是一一对应的。 (2)所有的状态,保存在一个对象里面。 2、Store Store 就是保存数据的地方,你可以把它看成一个容器。整个应用只能有一个 Store。 Redux 提供createStore这个函数,用来 阅读全文
posted @ 2017-04-29 15:41 Tekkaman 阅读(235) 评论(0) 推荐(0) 编辑
 
摘要: 【ES2015 import】 The import statement is used to import functions, objects or primitives that have been exported from an external module, another scrip 阅读全文
posted @ 2017-04-29 13:15 Tekkaman 阅读(1323) 评论(0) 推荐(0) 编辑