开发者问题收集

如何使用const值设置JSON属性

2022-11-16
39

我想使用 const 数据创建 Json 属性 就像这样。

const title = 'NAME'
data = {title: 'This is title'}
console.log(JSON.stringify(data))

我想要这个结果 => {NAME: 'This is title'>

但是显示这个 => {title: 'This is title'>

我该怎么办?

1个回答

对于动态键,您可以使用 [variableName] 表示法。

因此将 title 更改为 [title]

const title = 'NAME'
data = {[title]: 'This is title'}
console.log(JSON.stringify(data))
Maniraj Murugan
2022-11-16