如何使用angularjs更新集合中的字段值?

时间:2016-07-21 07:25:59

标签: angularjs

我上面有三个对象的集合,其中的字段名为Id&名称。我需要将名称字段值更新为' AAA'而不是' ZZZ'在id = 3时,不使用角度中的for循环条件。

function get()
{        
        var colls =[];        
        colls.push({id: 1, Name: 'XXX'});
        colls.push({id: 2, Name: 'YYY'});
        colls.push({id: 3, Name: 'ZZZ'});  
}

提前致谢 迪内希

0 个答案:

没有答案