Redux里Reducer和Action是怎么关联在一起的
1 回答
Helenr
TA贡献1780条经验 获得超3个赞
在todo例子中,按照官方文档把state拆分成todos和visibility,现在我在另一个reducer中需要用到todos,比如设置所有的todos的completed为true(false),这个具体要怎么做?
以下是代码
function todos(state = initialState, action) {
switch (action.type) {
case ADD_TODO:
return [
...state,
{
text: action.text,
competed: false
}
];
default:
return state;
}}
function allCompleted(state, action) {
switch (action.type) {
case YES:
return xxxx;//这里要怎么实现,才能引用到或者共享上面的todos,因为要遍历所有todo的completed属性,
default:
return state;
}
}
解决方案1:
新加两个action,然后把allComleted函数放在todos函数里面,操作同一个state下的todos树
添加回答
举报
0/150
提交
取消