对React-redux的源码分析(代码)
程序员文章站
2022-04-10 19:52:44
...
本篇文章给大家带来的内容是关于React-redux的源码分析(代码) ,有一定的参考价值,有需要的朋友可以参考一下,希望对你有所帮助。
Provider
//最后导出的是createProvider()。所以一开始storeKey应该是以默认值‘store’传进去的 function createProvider(storeKey = 'store', subKey) { const subscriptionKey = subKey || `${storeKey}Subscription` class Provider extends Component { //设置context,能让子组件拿到store //相当于返回 {store: this.store} getChildContext() { return { [storeKey]: this[storeKey], [subscriptionKey]: null } } constructor(props, context) { super(props, context) //this.store = props.store this[storeKey] = props.store; } render() { //只能有一个子组件 return Children.only(this.props.children) } } //props和context类型验证 Provider.propTypes = { store: storeShape.isRequired, children: PropTypes.element.isRequired, } Provider.childContextTypes = {
[storeKey]: storeShape.isRequired, [subscriptionKey]: subscriptionShape, } return Provider }
通常的做法是我们先通过redux创建好store,然后赋给Provider组件的store属性。在Provider组件内部,拿到这个store,设置为context属性,这样就能让它的所有组件都能通过context拿到store。
<Provider store={store}> <App /> </Provider>
相关推荐:
以上就是对React-redux的源码分析(代码)的详细内容,更多请关注其它相关文章!
推荐阅读
-
[Abp vNext 源码分析] - 11. 用户的自定义参数与配置
-
基于DevExpress的SpreadsheetControl实现对Excel的打开、预览、保存、另存为、打印(附源码下载)
-
对textarea框的代码调试,而且功能上使用非常方便,酷
-
SpringBoot 源码解析 (六)----- Spring Boot的核心能力 - 内置Servlet容器源码分析(Tomcat)
-
ORACLE常见错误代码的分析与解决(二)
-
android源代码情景分析(android开发环境的搭建步骤)
-
spring源码分析系列5:ApplicationContext的初始化与Bean生命周期
-
spring源码分析6: ApplicationContext的初始化与BeanDefinition的搜集入库
-
Python的socket模块源码中的一些实现要点分析
-
python中pygame针对游戏窗口的显示方法实例分析(附源码)