我正在开发一个带有购物车的应用程序。添加产品时,我必须检查该产品是否存在。我正在使用这种方法:
for (go over all products){
if(product exists){
--only change the quantity of the product[n]
}
else{
--create a new product object with all its properties
}
}
但是使用这种方法,如果我要添加的产品与索引 0 不同(for 检查的第一个),请始终添加一个新对象(产品),例如,如果我的产品存在并且具有索引2、这个永远不会知道它的存在。
对不起我的英语;)谢谢。