使用循环更新json属性值

时间:2016-04-12 08:47:33

标签: javascript json loops

[{id:1,price:10},{id:2,price:20}]

如何将ID为2的对象数组的价格更新为200?

var obj = [{id:1,price:10},{id:2,price:20}];
for(var i=0;i<obj.length;i++){
        if(obj[i].id == 2){
          //what to do here?
        }
      }

我可以继续推动和拼接等,但挑战在于保持这个位置。

3 个答案:

答案 0 :(得分:3)

你可以这样做:

obj[i].price = 200;
break;

中断将阻止您继续循环遍历所有项目(因为您找到了正在搜索的项目)。

答案 1 :(得分:0)

或更短Array#forEach()

&#13;
&#13;
var obj = [{ id: 1, price: 10 }, { id: 2, price: 20 }];

obj.forEach(function (a) {
    if (a.id === 2) {
        a.price = 200;
    }
});

document.write('<pre>' + JSON.stringify(obj, 0, 4) + '</pre>');
&#13;
&#13;
&#13;

答案 2 :(得分:0)

[{id:1,price:10},{id:2,price:20}].forEach(function(a){ (a.id===2) ? a.price=200 : a});