内容简介:reducer来自于官方网站的说明:而js 中的 Array的方法 reduce, 是这样的;[10,2,3].reduce(function(a, b){ return a + b})
reducer来自于官方网站的说明:
而js 中的 Array的方法 reduce, 是这样的;
[10,2,3].reduce(function(a, b){ return a + b})
结果是 15. ( 10 + 2 + 3)
[10,2,3].reduce(function(a, b){ return a - b})
结果是5 ( 10 -2 - 3)
所以 , reduce 是把一个数组压缩成一个值的函数。(reduce an array to a single value)
在上面的代码中, reduce所接受的函数, ( function(a,b) {return a+b}) ,
在redux中,就叫做reducer 。 英文原文: It's called a reducer because it's the type of function you would pass to Array.prototype.reduce(reducer, ?initialValue)
所以,这个东西完全不要翻译, 它是从语法概念的层面得到的名称,而不是 "store, action"这样 含义非常明显的名称。
大家在使用redux的时候知道这一点就好。 。
以上所述就是小编给大家介绍的《react - redux 中的 reducer 的命名和含义》,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对 码农网 的支持!
猜你喜欢:- HTTP 状态码及含义
- Go-源码文件的分类和含义
- Go pprof内存指标含义备忘录
- 读懂 TS 中联合类型和交叉类型的含义
- iOS·NSObject的两种含义:类与协议
- MSBuild 中的特殊字符($ @ % 等):含义、用法以及转义
本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们。
Designing Programmes
Karl Gerstner / Springer Verlag / 2007 / $499.00
Karl Gerstnera (TM)s work is a milestone in the history of design. One of his most important works is Designing Programmes, which is presented here in a new edition of the original 1964 publication. I......一起来看看 《Designing Programmes》 这本书的介绍吧!