对象的JSON
this.products.find(p => p.ProductId == this.selectedProduct)
.WareHouseProducts.find(w => w.AvailableQuantity == this.selectedProduct)
.AvailableQuantity - this.quantity;
我想减去AvailableQuantity或更改事件..
putStrLn
我试试这个,但没有工作
我需要减去仓库产品的可用数量请帮帮我..
答案 0 :(得分:1)
您的代码应该可以工作,可能是第二个查找中有错误,应该是ProductId而不是AvailableQuantity
.find(w => w.ProductId === this.selectedProduct)