gpt4 book ai didi

javascript - 从 javascript 对象列表中按属性获取值

转载 作者:行者123 更新时间:2023-12-03 12:15:40 25 4
gpt4 key购买 nike

我想从 javascript 对象列表中获取属性值,我有一个列表

var cars = [{ id: 1, name: 'Audi' }, { id: 2, name: 'BMW' }, { id: 1, name: 'Honda' }];

现在我想通过像这样使用 for 循环来获取 id 或 name 属性值

var cars = [{ id: 1, name: 'Audi' }, { id: 2, name: 'BMW' }, { id: 1, name: 'Honda' }];
var items=[];
var firstProp='id';
for (var i = 0; i < model.length; i++) {

//original work
items.push({ value: model[i].firstProp});//here is the problem
}

请大家给点建议,谢谢。

最佳答案

如果我正确理解您的问题,您应该使用方括号表示法而不是点表示法:

//..  
items.push({ value: model[i][firstProp]});//here is the problem

关于javascript - 从 javascript 对象列表中按属性获取值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24719829/

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