javascript 将数组转换为对象列表

声明:本页面是StackOverFlow热门问题的中英对照翻译,遵循CC BY-SA 4.0协议,如果您需要使用它,必须同样遵循CC BY-SA许可,注明原文地址和作者信息,同时你必须将它归于原作者(不是我):StackOverFlow 原文地址: http://stackoverflow.com/questions/31479192/
Warning: these are provided under cc-by-sa 4.0 license. You are free to use/share it, But you must attribute it to the original authors (not me): StackOverFlow

提示:将鼠标放在中文语句上可以显示对应的英文。显示中英文
时间:2020-10-28 13:52:15  来源:igfitidea点击:

Convert array to list of objects

javascriptjqueryarraysunderscore.js

提问by mortensen

I have an object

我有一个对象

myObject = {
  10: "some value",
  15: "another value",
  ...
}

can I with underscore, jquery, or plain js convert it into a list as:

我可以使用下划线、jquery 或普通 js 将其转换为列表:

myList = [
  { label: 10, value: "some value" },
  { label: 15, value: "another value" },
  ...
]

回答by TaoPR

With underscore.js

使用 underscore.js

myList = _.map(_.pairs(myObject), function(n){
     return {label: n[0], value: n[1]}
});

Or with plain JavaScript

或者使用纯 JavaScript

myList = Object.keys(myObject).map(function(key){
    return {label: key, value: myObject[key]}
});

回答by Gruff Bunny

You can use mapto transform the object into the required form:

您可以使用map将对象转换为所需的形式:

    var myList = _.map(myObject, function(value, key){
        return {
            label: key,
            value: value
        }
    });