react和redux中的幾種經常使用的方法

1. createStore(reducer, [initState, enhancer])------redux中的方法 做用:建立一個Redux store來存放應用中全部的state,一個應用只能有個store。函數返回store對象。 參數: reducer(Function):兩個參數:state和action,返回一個state。 不要對參數state進行修改,須要返回一個新的對象。
相關文章
相關標籤/搜索