从对象获取属性值并将其分配给javascript中的变量
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了从对象获取属性值并将其分配给javascript中的变量相关的知识,希望对你有一定的参考价值。
我有这个对象,我需要获取属性name
的值以将其分配给变量,以便我可以将它用于菜单中的每个选项。这是返回的数据:
“parentArrayOfObjects”: [
{
“data”: {
“current”: {
“id”: 0,
“name”: “Winter”
}
}
},
{
“data”: {
“current”: {
“id”: 0,
“name”: “Spring”
}
}
}
]
使用上面的内容,我为索引0处的每个菜单获取data.current.name
属性的相同值,这不是我想要的。请告诉我我做错了什么。谢谢。
// returns same name in all menus
var getCurrentChildPropertyName = (function(){
for (var value in parentArrayOfObjects) {
var currentChildProperty=parentArrayOfObjects[value].data.current;
if( currentChildProperty !== null){
return currentChildProperty.name;
}
}
})();
// returns same name in all menus
var getCurrentChildPropertyName = (function(){
for ( var i = 0; i < parentArrayOfObjects.length; i++) {
var currentChildProperty = parentArrayOfObjects[i].data.current;
if( currentChildProperty !== null){
return currentChildProperty.name;
}
}
})();
// Use different returned name in each menu (ExtJs3)
dataStore.insert(0, [new Ext.data.Record({
id: 0,
name: getCurrentChildPropertyName
})
答案
const x = {'parentArrayOfObjects': [
{
'data': {
'current': {
'id': 0,
'name': 'Winter'
}
}
},
{
'data': {
'current': {
'id': 0,
'name': 'Spring'
}
}
}
]}
const results = x.parentArrayOfObjects.map((item) => item.data.current.name);
console.log(results); //[ 'Winter', 'Spring' ]
以上是关于从对象获取属性值并将其分配给javascript中的变量的主要内容,如果未能解决你的问题,请参考以下文章
如何从文本框中获取值并将其分配给 Xcode 中的整数变量?
如何从另一个工作表中获取单元格值并将其分配给 UDF 的返回值?