我有一个对象,其中包含一组对象,我需要从中获取它们的属性值。
作为一个例子,这是我需要得到的:
Stronghold.bins.models[0].attributes.entity.title
返回“要塞标题 1”
function grabItemName(){
var itemName=$(Stronghold.bins).each(function(){
return this.models[0].attributes.entity.title == title;
console.log(itemName);
})
};
(如果我有更好的方法来问这个问题,请告诉我)
如果问得不好,我深表歉意!
当前的问题是它不理解数组值 '[0]' 并且无法读取它,因为它是未定义的。我需要做什么来获取数组中所有项目的“标题”值?