如何使用 javascript 更改一个对象中的键?

How to change the keys in one object with javascript?(如何使用 javascript 更改一个对象中的键?)

本文介绍了如何使用 javascript 更改一个对象中的键?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有:

    var myAbc = { 0: true, 1: false, 2: true };

我想更改 de 键,例如:

and i want to change de keys like:

var myAbc = { key1: true, key2: false, key3: true };

我已经试过了:

 for (var key in array) {
            key = value;
        }

但是没有改变数组的键位在for的外面,有什么帮助吗?

but did not change the key of the array out side of the for, any help?

推荐答案

如果你会用es6,你可以一行行搞定:

If you can use es6, you can do this in one line:

var myAbc = { 0: true, 1: false, 2: true };

var renamed = Object.keys(myAbc).reduce((p, c) => { p[`key${Number(c)+1}`] = myAbc[c]; return p; }, {})

console.log(renamed)

这篇关于如何使用 javascript 更改一个对象中的键?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本文标题为:如何使用 javascript 更改一个对象中的键?

基础教程推荐