如何迭代特定列表的 属性
How iterate specific list's property
我是 JS 新手,我已经将 this 中的所有内容推送到我的数组列表 MyList
上,但我想获取所有 title
属性 来推送我的 titleList
我不知道我是否需要使用递增获取所有标题,所以我找到了这个对我来说似乎合乎逻辑的例子:
...
const MyList = []
MyList.push(json_response)
const titleList = []
Object.keys(MyList).forEach(key => {
console.log(key, obj[title]);
titleList.push([title])
});
我发现了这个:
ReferenceError: Cannot access 'title' before initialization
at /Users/mac/Desktop/My_test/index.js:55:28
at Array.map (<anonymous>)
at /Users/mac/Desktop/My_test/index.js:42:33
如果 json_response 有数据试试这个...
目前还没有定义标题
const MyList = []
const titleList = []
MyList.push(json_response)
MyList.forEach(item => {
console.log(item);
titleList.push(item.title)
});
我是 JS 新手,我已经将 this 中的所有内容推送到我的数组列表 MyList
上,但我想获取所有 title
属性 来推送我的 titleList
我不知道我是否需要使用递增获取所有标题,所以我找到了这个对我来说似乎合乎逻辑的例子:
...
const MyList = []
MyList.push(json_response)
const titleList = []
Object.keys(MyList).forEach(key => {
console.log(key, obj[title]);
titleList.push([title])
});
我发现了这个:
ReferenceError: Cannot access 'title' before initialization
at /Users/mac/Desktop/My_test/index.js:55:28
at Array.map (<anonymous>)
at /Users/mac/Desktop/My_test/index.js:42:33
如果 json_response 有数据试试这个...
目前还没有定义标题const MyList = []
const titleList = []
MyList.push(json_response)
MyList.forEach(item => {
console.log(item);
titleList.push(item.title)
});