這篇文章帶給大家的內容是關於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>
相關推薦:
##Symfony2原始碼分析啟動過程2,symfony2原始碼#
以上是對React-redux的源碼分析(程式碼)的詳細內容。更多資訊請關注PHP中文網其他相關文章!