gpt4 book ai didi

reactjs - React 和 React Native 中的有效负载

转载 作者:行者123 更新时间:2023-12-03 13:54:41 24 4
gpt4 key购买 nike

当 Redux 用于将应用程序状态合并到 React 和 React Native 中时,为什么操作创建者需要类型但不需要有效负载?

如果 Action 没有附加负载,那么 Action 创建者的目的是什么?

最佳答案

有时,您的 reducer 不会根据有效负载返回新状态。一个例子是切换状态中某些内容的操作。 reducer 只需要知道触发了该操作即可切换属性。示例:

const lightSwitch = (
state = {on: false},
action,
) => {
switch (action.type) {
case TOGGLE:
return { ...state, on: !state.on };
default: return state;
}
}

关于reactjs - React 和 React Native 中的有效负载,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42798193/

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