這篇文章主要介紹了redux中compose有什么用,具有一定借鑒價值,感興趣的朋友可以參考下,希望大家閱讀完這篇文章之后大有收獲,下面讓小編帶著大家一起了解一下。
成都網(wǎng)絡公司-成都網(wǎng)站建設公司成都創(chuàng)新互聯(lián)十余年經(jīng)驗成就非凡,專業(yè)從事成都網(wǎng)站建設、網(wǎng)站設計,成都網(wǎng)頁設計,成都網(wǎng)頁制作,軟文平臺,一元廣告等。十余年來已成功提供全面的成都網(wǎng)站建設方案,打造行業(yè)特色的成都網(wǎng)站建設案例,建站熱線:18982081108,我們期待您的來電!應用
最近給自己的react項目添加redux的時候,用到了redux中的compose函數(shù),使用compose來增強store,下面是我在項目中的一個應用:
import {createStore,applyMiddleware,compose} from 'redux'; import createSagaMiddleware from 'redux-saga'; const sagaMiddleware = createSagaMiddleware(); const middlewares = []; let storeEnhancers = compose( applyMiddleware(...middlewares,sagaMiddleware), (window && window .devToolsExtension) ? window .devToolsExtension() : (f) => f, ); const store = createStore(rootReducer, initialState={} ,storeEnhancers);
上面這段代碼可以讓store與 applyMiddleware 和 devToolsExtension 一起使用。
reduce方法
在理解compose函數(shù)之前先來認識下什么是reduce方法?
官方文檔上是這么定義reduce方法的:
reduce() 方法對累加器和數(shù)組中的每個元素(從左到右)應用一個函數(shù),將其簡化為單個值。
看下函數(shù)簽名:
arr.reduce(callback[, initialValue])
callback
執(zhí)行數(shù)組中每個值的函數(shù),包含四個參數(shù):
accumulator(累加器)
累加器累加回調的返回值; 它是上一次調用回調時返回的累積值,或initialValue。
currentValue(當前值)
數(shù)組中正在處理的元素。
currentIndex可選(當前索引)
數(shù)組中正在處理的當前元素的索引。 如果提供了initialValue,則索引號為0,否則為索引為1。
array可選(數(shù)組)
調用reduce()的數(shù)組
initialValue可選(初始值)
用作第一個調用 callback的第一個參數(shù)的值。 如果沒有提供初始值,則將使用數(shù)組中的第一個元素。 在沒有初 始值的空數(shù)組上調用 reduce 將報錯。
下面看一個簡單的例子:
數(shù)組求和
var sum = [0, 1, 2, 3].reduce(function (a, b) { return a + b; }, 0); // sum 值為 6
這個例子比較簡單,下面再看個稍微復雜點的例子,計算數(shù)組中每個元素出現(xiàn)的次數(shù):
var series = ['a1', 'a3', 'a1', 'a5', 'a7', 'a1', 'a3', 'a4', 'a2', 'a1']; var result= series.reduce(function (accumulator, current) { if (current in accumulator) { accumulator[current]++; } else { accumulator[current] = 1; } return accumulator; }, {}); console.log(JSON.stringify(result)); // {"a1":4,"a3":2,"a5":1,"a7":1,"a4":1,"a2":1}
這個例子很巧妙的利用了數(shù)組的reduce方法,在很多算法面試題中也經(jīng)常用到。這里需要注意的是需要指定initialValue參數(shù)。
通過reduce函數(shù)還可以實現(xiàn)數(shù)組去重:
var a = [1, 1, 2, 3, 4, 4, 5, 6, 6, 6, 7]; Array.prototype.duplicate = function() { return this.reduce(function(cal, cur) { if(cal.indexOf(cur) === -1) { cal.push(cur); } return cal; }, []) } var newArr = a.duplicate();
compose函數(shù)
理解完了數(shù)組的reduce方法之后,就很容易理解compose函數(shù)了,因為實際上compose就是借助于reduce來實現(xiàn)的??聪鹿俜皆创a:
export default function compose(...funcs) { if (funcs.length === 0) { return arg => arg } if (funcs.length === 1) { return funcs[0] } return funcs.reduce((a, b) => (...args) => a(b(...args))) }
compose的返回值還是一個函數(shù),調用這個函數(shù)所傳遞的參數(shù)將會作為compose最后一個參數(shù)的參數(shù),從而像'洋蔥圈'似的,由內向外,逐步調用。
看下面的例子:
import { compose } 'redux'; // function f const f = (arg) => `函數(shù)f(${arg})` // function g const g = (arg) => `函數(shù)g(${arg})` // function h 最后一個函數(shù)可以接受多個參數(shù) const h = (...arg) => `函數(shù)h(${arg.join('_')})` console.log(compose(f,g,h)('a', 'b', 'c')) //函數(shù)f(函數(shù)g(函數(shù)h(a_b_c)))
所以最后返回的就是這樣的一個函數(shù) compose(fn1, fn2, fn3) (...args) = > fn1(fn2(fn3(...args))) 。
感謝你能夠認真閱讀完這篇文章,希望小編分享的“redux中compose有什么用”這篇文章對大家有幫助,同時也希望大家多多支持創(chuàng)新互聯(lián),關注創(chuàng)新互聯(lián)行業(yè)資訊頻道,更多相關知識等著你來學習!