gpt4 book ai didi

javascript - Reducer 突然在商店中添加元素

转载 作者:行者123 更新时间:2023-12-04 08:14:58 24 4
gpt4 key购买 nike

所以我试图向我的 React-redux 站点添加一个购物车功能,但我遇到了一个非常奇怪的事件。所以这就是我从 Action 的有效载荷中得到的,例如:

{
info: 'Fjallraven - Foldsack No. 1 Backpack, Fits 15 Laptops',
id: 1,
price: 109.95,
image: 'https://fakestoreapi.com/img/81fPKd-2AYL._AC_SL1500_.jpg',
count: 5,
totalPrice: 549.75
}
所以我试图做的是,当尝试添加具有相同 id 的项目时,不添加它,而是增加购物车中已存在的具有相同 id 的项目的计数:
const index = state.currentCart.findIndex((x) => x.id === id);
return {
...state,
currentCart: [
...state.currentCart,
state.currentCart[index].count += 1,
(state.currentCart[index].totalPrice =
state.currentCart[index].price * state.currentCart[index].count),
],
};
计数本身增加了,但同时发生了一些非常奇怪的事情。
产品的总价格及其计数也作为 currentCart 数组的元素添加,当唯一应该发生的事情是使用有效负载中的 id 更新购物车项目的计数时,
这是触发此操作时 currentCart 数组发生的情况:
currentCart: [
{
info: 'Fjallraven - Foldsack No. 1 Backpack, Fits 15 Laptops',
id: 1,
price: 109.95,
image: 'https://fakestoreapi.com/img/81fPKd-2AYL._AC_SL1500_.jpg',
count: 6,
totalPrice: 659.7
},
2,
219.9,
3,
329.85,
4,
439.8,
5,
549.75,
6,
659.7
]
}
我确定我没有改变状态,在此先感谢您!

最佳答案

不,它们不是凭空而来的,您正在积极地将值添加到数组中。
您似乎对如何正确处理状态有些困惑。您要么选择一种不可变的方法(如果您正在使用 react,我真的建议您这样做),或者您选择改变您的引用。
在 javascript 中,当您进行赋值时,该赋值也会返回正在分配的值,例如:

let x = 1
let b = x+=1
// b is now 2 and x is 2
let c = b += 2
// b is now 4 and c is also 4
这正是您的数组分配中发生的事情。您首先将旧版本的数组传播到新版本上(制作副本),然后在保存这些返回值的同时(这是关键部分)改变对当前汽车的引用数组本身中的赋值。
看看数组上的值,它们是您操作的结果:
count (1) += 1 // 2
price (109.95) * count (2) = 219.9,
count (2) += 1 // 3
price (109.95) * count (3) = 329.85
... etc
因此,您在阵列上拥有的是计数和总价格值的历史记录。
这是您的代码中发生的事情的分割:
// Will allways be at index 0, because you add it as first element 
// and then you keep copying the array below
const index = state.currentCart.findIndex((x) => x.id === id);
return {
...state,
currentCart: [
// Here you are copying the old array into the new one,
// keeping the current car at the first position
...state.currentCart,
// Here you are updating the values of the object at index 0
// and at the same time you are adding those values at
// the end of the array
state.currentCart[index].count += 1,
(state.currentCart[index].totalPrice =
state.currentCart[index].price * state.currentCart[index].count),
],
};
您想要做的是每次都构建一个新的 currentCart 。您还想为 currentCart 使用一个对象,而不是一个数组。如果您想在购物车中保留一个项目列表,我建议您在购物车上创建一个名为 items 的嵌套属性,并将其设为一个数组。
您的代码示例并未向我们展示您从何处获取操作,但我将为您提供一个示例,假设您只有它并且要添加到购物车的新项目来自有效负载。
  const currentCart = state.currentCart;
const newItem = action.payload
return {
...state,
currentCart: {
...currentCart,
count: currentCart.count + 1
totalPrice: (newItem.price * newItem.count) + currentCart.totalPrice,
items: [...currentCart.items, newItem]
},
};

关于javascript - Reducer 突然在商店中添加元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/65749437/

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