gpt4 book ai didi

javascript - 如何在 ES5 Redux reducer 中初始化默认数据?

转载 作者:数据小太阳 更新时间:2023-10-29 04:53:56 25 4
gpt4 key购买 nike

目前我还不能使用 ES6/ES2015,我只能使用 ES5 来编写 Redux reducer。由于 reducer 的状态参数必须是不可变的,即使它是未定义的,我想出了以下模式:

function myState( state, action ) {
if ( typeof state === 'undefined' ) {
return myState( { value1: 'foo', value2: 'bar' }, action );
}
// actual state calculation here
}

关于如何使用 ES5 确保默认值的任何替代建议或意见?

编辑: 经过一些问题和建议:我进行递归调用的原因是我非常重视“状态不可变”。因此,即使 state 参数为 undefined,我也不会更改参数变量本身。我对不变性的理解是否太过分了?

最佳答案

Redux 不会强制您使用默认参数语法。它只关心当它为您提供 undefined 作为状态时,您返回其他内容,以便您的应用能够使用初始状态树启动。

ES6 中的这个函数:

function counter(state = 0, action) {
switch (action.type) {
case 'INCREMENT':
return state + 1
case 'DECREMENT':
return state + 1
default:
return state
}
}

相当于ES5中的这个函数:

function counter(state, action) {
if (state === undefined) {
state = 0
}

switch (action.type) {
case 'INCREMENT':
return state + 1
case 'DECREMENT':
return state + 1
default:
return state
}
}

验证这一点的一个好方法是 run this code through the Babel REPL .


The reason I do a recursive call is that I take the "state is immutable" very seriously. So even when the state parameter is undefined, I don't change the parameter variable itself.

这里不需要递归调用。我认为您的问题可能包含一些关于突变和引用分配之间差异的混淆。

当你写作时

var x = { lol: true }
x.lol = false

您正在改变 x 对象。这是 Redux 所不允许的。

但是当你写

var x = { lol: true }
x = { lol: false }

原始对象保持完整。 x“绑定(bind)”(也称为“变量”)只是开始指向不同的对象。

Redux 不关心你是否更改了 state 参数所指的内容。它在您的函数中是本地的。无论您是否返回它,只要您不改变实际对象或其中的任何对象,都可以更改引用。

只是改变变量所指的内容不会改变对象:

// good: local variable called "state" refers to a different number
state = state + 1

// good: local variable called "state" refers to a different array
state = state.concat([42])

// good: local variable called "state" refers to a different string
state = state + ", lol"

然而,改变对象内部的某些东西,或者它链接到的对象,无论是否深入,都是一种突变,并且是 Redux 不允许的:

// bad: object that local variable "state" refers to has been mutated
state.counter = state.counter + 1

// bad: object that local variable "state" refers to has been mutated
var sameObjectAsState = state
state.counter = state.counter + 1

// bad: array that local variable "state" refers to has been mutated
state.push(42)

// bad: array that local variable "state" refers to has been mutated
var sameArrayAsState = state
sameArrayAsState.push(42)

// bad: object that is linked from the object that local variable "state" refers to has been mutated
state.something.deep.counter = 42

// bad: object that is linked from the object that local variable "state" refers to has been mutated
var somethingDeep = state.something.deep
somethingDeep.counter = 42

关于javascript - 如何在 ES5 Redux reducer 中初始化默认数据?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35629350/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com