当前位置:  开发笔记 > 编程语言 > 正文

将对象数组转换为属性数组

如何解决《将对象数组转换为属性数组》经验,为你挑选了1个好方法。

是否有一种简单的方法,使用filter或者parse其他东西来转换数组,如下所示:

var someJsonArray = [
  {id: 0, name: "name", property: "value", otherproperties: "othervalues"},
  {id: 1, name: "name1", property: "value1", otherproperties: "othervalues1"},
  {id: 2, name: "name2", property: "value2", otherproperties: "othervalues2"}
];

进入一个简单的数组,填充前一个数组中包含的对象的一个​​属性,如下所示:

[0, 1, 2]

Praveen Kuma.. 43

使用.map()功能:

finalArray = someJsonArray.map(function (obj) {
  return obj.id;
});

片段

var someJsonArray = [
  {id: 0, name: "name", property: "value", therproperties: "othervalues"},
  {id: 1, name: "name1", property: "value1", otherproperties: "othervalues1"},
  {id: 2, name: "name2", property: "value2", otherproperties: "othervalues2"}
];
var finalArray = someJsonArray.map(function (obj) {
  return obj.id;
});
console.log(finalArray);

上面的代码片段已更改为使其正常工作.



1> Praveen Kuma..:

使用.map()功能:

finalArray = someJsonArray.map(function (obj) {
  return obj.id;
});

片段

var someJsonArray = [
  {id: 0, name: "name", property: "value", therproperties: "othervalues"},
  {id: 1, name: "name1", property: "value1", otherproperties: "othervalues1"},
  {id: 2, name: "name2", property: "value2", otherproperties: "othervalues2"}
];
var finalArray = someJsonArray.map(function (obj) {
  return obj.id;
});
console.log(finalArray);
推荐阅读
黄晓敏3023
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有