首頁 >web前端 >js教程 >對React-redux的源碼分析(程式碼)

對React-redux的源碼分析(程式碼)

不言
不言原創
2018-09-14 15:36:511144瀏覽

這篇文章帶給大家的內容是關於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>

相關推薦:

YII 的原始碼分析,YII原始碼分析

##Symfony2原始碼分析啟動過程2,symfony2原始碼#

以上是對React-redux的源碼分析(程式碼)的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn