gpt4 book ai didi

Javascript - EXTjs 访问数组值

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

再说一遍,我对 Javascript 和 Extjs 还很陌生。

代码:

 var test = [
{
id: 0,
test: 'Hello'
},
{
id: 1,
test: 'World'
}
];

如何获取每个实例的 ID?.

感谢您的回复。

问候,罗内尔

最佳答案

你的意思是:

for(var i = 0; i < test.length; i++) {
console.log( test[i].id);
}

console.log( test[0].id); //for first
console.log( test[1].id); //for second

在Extjs中,你可以使用迭代器函数:

Ext.each(test, function(val, index) {
console.log(val.id)
});

或者

Ext.pluck(test, 'id'); //returns [0, 1]

关于Javascript - EXTjs 访问数组值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12684177/

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