国产xxxx99真实实拍_久久不雅视频_高清韩国a级特黄毛片_嗯老师别我我受不了了小说

資訊專欄INFORMATION COLUMN

redux的bindActionCreators源碼,中文翻譯

MockingBird / 2363人閱讀

摘要:就是給創(chuàng)建函數(shù)綁定了可以直接以普通函數(shù)執(zhí)行而不用這樣寫比如下面生成一個對象對象里面的值是那么可以直接執(zhí)行將一個值是創(chuàng)建函數(shù)的對象變成一個具有相同值的對象但是每個函數(shù)都被封裝到回調(diào)里面這樣它們就有可能被直接觸發(fā)這樣只是比較方便你也可以調(diào)用為了

bindActionCreators就是給action創(chuàng)建函數(shù)綁定了dispatch,
可以直接以普通函數(shù)執(zhí)行,而不用dispatch(actionCreator)這樣寫.
比如下面,bindActionCreators生成一個對象,對象里面的value值是function,
那么可以直接this.boundActionCreators.addTodo()執(zhí)行**

function bindActionCreator(actionCreator, dispatch) {
  return (...args) => dispatch(actionCreator(...args))
}

/**
 * Turns an object whose values are action creators, into an object with the
 * same keys, but with every function wrapped into a `dispatch` call so they
 * may be invoked directly. This is just a convenience method, as you can call
 * `store.dispatch(MyActionCreators.doSomething())` yourself just fine.
 *
 * 將一個value值是action創(chuàng)建函數(shù)的對象變成一個具有相同key值的對象,但是每個函數(shù)都被封裝到
 * `dispatch`回調(diào)里面,這樣它們就有可能被直接觸發(fā). 這樣只是比較方便,你也可以調(diào)用
 * `store.dispatch(MyActionCreators.doSomething())`
 * 
 * For convenience, you can also pass a single function as the first argument,
 * and get a function in return.
 *
 * 為了方便,你也可以傳單個函數(shù)作為第一個參數(shù),然后返回一個函樹
 * 
 * @param {Function|Object} actionCreators An object whose values are action
 * creator functions. One handy way to obtain it is to use ES6 `import * as`
 * syntax. You may also pass a single function.
 *
 * actionCreators 是一個value值是action創(chuàng)建函數(shù)的對象,一個很方便獲取到它的方法就是
 * 使用ES6 的`import * as `語法.也可以傳單個函數(shù)
 * 
 * @param {Function} dispatch The `dispatch` function available on your Redux
 * store.
 *
 * dispatch就是redux 里store的dispatch
 * 
 * @returns {Function|Object} The object mimicking the original object, but with
 * every action creator wrapped into the `dispatch` call. If you passed a
 * function as `actionCreators`, the return value will also be a single
 * function.
 * 
 * 返回的對象和初始的對選象很像,但每一個action創(chuàng)建函數(shù)都給封裝到`dispatch`回調(diào)里面
 * 如果你傳單個函數(shù)作為`actionCreators`,那返回值也是一個單個函數(shù)
 */
export default function bindActionCreators(actionCreators, dispatch) {
  if (typeof actionCreators === "function") {
    return bindActionCreator(actionCreators, dispatch)
  }

  if (typeof actionCreators !== "object" || actionCreators === null) {
    throw new Error(
      `bindActionCreators expected an object or a function, instead received ${actionCreators === null ? "null" : typeof actionCreators}. ` +
      `Did you write "import ActionCreators from" instead of "import * as ActionCreators from"?`
    )
    //bindActionCreators的參數(shù)應(yīng)該是對象或者函數(shù),而不是空或其他類型,
    //你是不是把"import * as ActionCreators from"寫成了"import ActionCreators from"?
  }

  const keys = Object.keys(actionCreators)
  const boundActionCreators = {}
  for (let i = 0; i < keys.length; i++) {
    const key = keys[i]
    const actionCreator = actionCreators[key]
    if (typeof actionCreator === "function") {
      boundActionCreators[key] = bindActionCreator(actionCreator, dispatch) //就是(...args) => dispatch(actionCreator(...args))
    }
  }
  return boundActionCreators
}

源碼解析請參考https://segmentfault.com/a/11...

文章版權(quán)歸作者所有,未經(jīng)允許請勿轉(zhuǎn)載,若此文章存在違規(guī)行為,您可以聯(lián)系管理員刪除。

轉(zhuǎn)載請注明本文地址:http://m.specialneedsforspecialkids.com/yun/102394.html

相關(guān)文章

  • 解析 Redux 源碼

    摘要:也可以看我的博客解析源碼解析源碼是狀態(tài)容器,提供可預(yù)測化的狀態(tài)管理。作為全家桶的一份子,可謂說也是名聲響響,在年學(xué)習(xí)想必沒有多少人沒聽過吧。 也可以看我的博客 - 解析 Redux 源碼 解析 Redux 源碼 showImg(https://segmentfault.com/img/bVDU86?w=1254&h=825); TIP Redux 是 JavaScript 狀態(tài)容器,提...

    Batkid 評論0 收藏0
  • Redux 源碼拾遺

    摘要:循環(huán)還沒有結(jié)束,其中的某個對進行了添加或者刪除,都會影響到此次循環(huán)的進行,帶來不可預(yù)期的錯誤。 首先來一段 redux 結(jié)合 中間件 thunk、logger 的使用demo 了解一下應(yīng)該如何使用 const redux = require(redux) const { createStore, combineReducers, bindActionCreators, ...

    CloudwiseAPM 評論0 收藏0
  • Redux 源碼拾遺

    摘要:循環(huán)還沒有結(jié)束,其中的某個對進行了添加或者刪除,都會影響到此次循環(huán)的進行,帶來不可預(yù)期的錯誤。 首先來一段 redux 結(jié)合 中間件 thunk、logger 的使用demo 了解一下應(yīng)該如何使用 const redux = require(redux) const { createStore, combineReducers, bindActionCreators, ...

    zhangfaliang 評論0 收藏0
  • redux源碼解讀--bindActionCreators源碼解析

    摘要:源碼解析是提供的一個輔助方法,能夠讓我們以方法的形式來調(diào)用。同時,自動對應(yīng)的。這個模塊的代碼十分簡單,只要大家明白了的使用,就能夠很清晰的理解這個模塊中的每一行代碼。后續(xù)的源碼解讀和測試例子可以關(guān)注源碼解讀倉庫 bindActionCreators源碼解析 bindActionCreators是redux提供的一個輔助方法,能夠讓我們以方法的形式來調(diào)用action。同時,自動dispa...

    Cc_2011 評論0 收藏0

發(fā)表評論

0條評論

最新活動
閱讀需要支付1元查看
<