轉載注:javascript
- 本文做者是淘寶前端團隊的葉齋。筆者很是喜歡這篇文章,故從新排版並轉載到這裏,同時也加入了一些本身的體會。
- 原文地址:http://taobaofed.org/blog/201...
Redux 是「React 全家桶」中極爲重要的一員,它試圖爲 React 應用提供「可預測化的狀態管理」機制。Redux 自己足夠簡單,除了 React,它還可以支持其餘界面框架。因此若是要將 Redux 和 React 結合起來使用,就還須要一些額外的工具,其中最重要的莫過於 react-redux 了。html
react-redux 提供了兩個重要的對象,Provider
和connect
,前者使React
組件可被鏈接(connectable),後者把 React 組件和 Redux 的 store 真正鏈接起來。react-redux 的文檔中,對connect
的描述是一段晦澀難懂的英文,在初學 redux 的時候,我對着這段文檔閱讀了好久,都沒有所有弄明白其中的意思(大概就是,單詞我都認識,連起來啥意思就不明白了的感受吧)。前端
在使用了一段時間 redux 後,本文嘗試再次回到這裏,給這段文檔一個靠譜的解讀。java
首先回顧一下 redux 的基本用法。若是你尚未閱讀過 redux 的文檔,你必定要先去閱讀一下。react
const reducer = (state = {count: 0}, action) => { switch (action.type){ case 'INCREASE': return {count: state.count + 1}; case 'DECREASE': return {count: state.count - 1}; default: return state; } } const actions = { increase: () => ({type: 'INCREASE'}), decrease: () => ({type: 'DECREASE'}) } const store = createStore(reducer); store.subscribe(() => console.log(store.getState()) ); store.dispatch(actions.increase()) // {count: 1} store.dispatch(actions.increase()) // {count: 2} store.dispatch(actions.increase()) // {count: 3}
經過reducer
建立一個store
,每當咱們在store
上dispatch
一個action
,store
內的數據就會相應地發生變化。git
咱們固然能夠直接在 React 中使用 Redux:在最外層容器組件中初始化store
,而後將state
上的屬性做爲props
層層傳遞下去。github
class App extends Component{ componentWillMount(){ store.subscribe((state)=>this.setState(state)) } render(){ return ( <Comp state={this.state} onIncrease={()=>store.dispatch(actions.increase())} onDecrease={()=>store.dispatch(actions.decrease())} /> ) } }
轉載注:redux
- 另外一種方法,在入口文件
index.js
中初始化store
,並將其export
出來,而後import
到定義組件的文件中去。
但這並非最佳的方式。最佳的方式是使用 react-redux 提供的Provider
和connect
方法。api
首先在最外層容器中,把全部內容包裹在Provider
組件中,將以前建立的store
做爲prop
傳給Provider
。框架
const App = () => { return ( <Provider store={store}> <Comp/> </Provider> ) };
Provider
內的任何一個組件(好比這裏的Comp
),若是須要使用state
中的數據,就必須是「被 connect 過的」組件——使用connect
方法對「你編寫的組件(MyComp
)」進行包裝後的產物。
class MyComp extends Component { // content... } const Comp = connect(...args)(MyComp);
可見,connect
方法是重中之重。
究竟connect
方法到底作了什麼,咱們來一探究竟。
首先看下函數的簽名:
connect([mapStateToProps], [mapDispatchToProps], [mergeProps], [options])
connect()
接收四個參數,它們分別是mapStateToProps
,mapDispatchToProps
,mergeProps
和options
。
mapStateToProps(state, ownProps) : stateProps
這個函數容許咱們將store
中的數據做爲props
綁定到組件上。
const mapStateToProps = (state) => { return { count: state.count } }
這個函數的第一個參數就是 Redux 的store
,咱們從中摘取了count
屬性。由於返回了具備count
屬性的對象,因此MyComp
會有名爲count
的props
字段。
class MyComp extends Component { render(){ return <div>計數:{this.props.count}次</div> } } const Comp = connect(...args)(MyComp);
固然,你沒必要將state
中的數據原封不動地傳入組件,能夠根據state
中的數據,動態地輸出組件須要的(最小)屬性。
const mapStateToProps = (state) => { return { greaterThanFive: state.count > 5 } }
函數的第二個參數ownProps
,是MyComp
本身的props
。有的時候,ownProps
也會對其產生影響。好比,當你在store
中維護了一個用戶列表,而你的組件MyComp
只關心一個用戶(經過props
中的userId
體現)。
const mapStateToProps = (state, ownProps) => { // state 是 {userList: [{id: 0, name: '王二'}]} return { user: _.find(state.userList, {id: ownProps.userId}) } } class MyComp extends Component { static PropTypes = { userId: PropTypes.string.isRequired, user: PropTypes.object }; render(){ return <div>用戶名:{this.props.user.name}</div> } } const Comp = connect(mapStateToProps)(MyComp);
當state
變化,或者ownProps
變化的時候,mapStateToProps
都會被調用,計算出一個新的stateProps
,(在與ownProps
merge 後)更新給MyComp
。
這就是將 Redux store
中的數據鏈接到組件的基本方式。
轉載注:
- 什麼叫作「
MyComp
本身的props
」?假設在不使用 react-redux 的時候,MyComp
的父組件是ParentComp
,那麼上文中的ownProps
是ParentComp
傳遞給MyComp
的所有屬性(對於下文中的方法mapDispatchToProps
亦同)。也就是說,ownProps
與 Redux 的store
與state
徹底無關。- 方法
mapStateToProps
爲MyComp
添加的屬性,不可能被方法mapDispatchToProps
訪問到,反之亦然。由於,這涉及到 render 的時機和順序的問題,筆者在這上面踩過至關多的坑。至於筆者爲何有這種需求,由於筆者設計了一個按鈕,功能是:在點擊後,根據當前的 state 計算出下一個 state,並更新。在經歷了無數error
之後,筆者終於意識到:react-redux 根本就不是設計用來解決這類問題的。解決方案有兩種:一是,在設計 reducer 的時候,就直接根據 state 更新;二是,導入全局store
並使用store.getState()
得到當前state
,而後根據這個state
進行更新。- 另外,若是使用PropTypes對
MyComp
作屬性類型檢查,方法mapStateToProps
和方法mapDispatchToProps
爲MyComp
添加的屬性是存在的。
mapDispatchToProps(dispatch, ownProps): dispatchProps
connect 的第二個參數是mapDispatchToProps
,它的功能是,將action
做爲props
綁定到MyComp
上。
const mapDispatchToProps = (dispatch, ownProps) => { return { increase: (...args) => dispatch(actions.increase(...args)), decrease: (...args) => dispatch(actions.decrease(...args)) } } class MyComp extends Component { render(){ const {count, increase, decrease} = this.props; return (<div> <div>計數:{this.props.count}次</div> <button onClick={increase}>增長</button> <button onClick={decrease}>減小</button> </div>) } } const Comp = connect(mapStateToProps, mapDispatchToProps)(MyComp);
因爲mapDispatchToProps
方法返回了具備increase
屬性和decrease
屬性的對象,這兩個屬性也會成爲MyComp
的props
。
如上所示,調用actions.increase()
只能獲得一個action
對象{type:'INCREASE'}
,要觸發這個action
必須在store
上調用dispatch
方法。dispatch
正是mapDispatchToProps
的第一個參數。可是,爲了避免讓 MyComp 組件感知到dispatch
的存在,咱們須要將increase
和decrease
兩個函數包裝一下,使之成爲直接可被調用的函數(即,調用該方法就會觸發dispatch
)。
Redux 自己提供了bindActionCreators
函數,來將action
包裝成直接可被調用的函數。
import {bindActionCreators} from 'redux'; const mapDispatchToProps = (dispatch, ownProps) => { return bindActionCreators({ increase: action.increase, decrease: action.decrease }); }
一樣,當ownProps
變化的時候,該函數也會被調用,生成一個新的dispatchProps
,(在與stateProps
和ownProps
merge 後)更新給MyComp
。注意,action
的變化不會引發上述過程,默認action
在組件的生命週期中是固定的。
轉載注:
- 函數
connect
甚至react-redux
的核心在於:將 Redux 中 store 的 state 綁定到組件的屬性上,使得對 state 的修改可以直接體現爲組件外觀的更改。所以,參數mapStateToProps
是很是重要的,可是參數mapDispatchToProps
則比較多餘——由於簡單粗暴地導入全局 store 一樣能達到相同的目的(事實上筆者就是這麼作的)。
[mergeProps(stateProps, dispatchProps, ownProps): props]
以前說過,不論是stateProps
仍是dispatchProps
,都須要和ownProps
merge 以後纔會被賦給MyComp
。connect
的第三個參數就是用來作這件事。一般狀況下,你能夠不傳這個參數,connect
就會使用Object.assign
替代該方法。
最後還有一個options
選項,比較簡單,基本上也不大會用到(尤爲是你遵循了其餘的一些 React 的「最佳實踐」的時候),本文就略過了。但願瞭解的同窗能夠直接看文檔。
(完)