gpt4 book ai didi

javascript - 将数据添加到 JSON 数组

转载 作者:太空宇宙 更新时间:2023-11-04 03:04:19 24 4
gpt4 key购买 nike

我的 Node.js 代码中有一个 JSON 数组,其架构如下:

{
"status": "ok",
"data": [
{
"id": 1,
"active": true,
"createdAt": "2017-07-21T15:39:31.000Z",
"updatedAt": "2017-07-21T15:47:13.000Z"
}
]
}

我想添加数据,使其看起来像:

{
"status": "ok",
"data": [
{
"id": 1,
"active": true,
"createdAt": "2017-07-21T15:39:31.000Z",
"updatedAt": "2017-07-21T15:47:13.000Z",
"information": "someInformation"
}
]
}

你能帮我解决这个问题吗?

谢谢!

最佳答案

像这样吗?访问 obj 变量的 data 属性以及该数组中的第一个元素,然后在该对象上设置一个等于您的字符串的新属性。

var obj = {
"status": "ok",
"data": [
{
"id": 1,
"active": true,
"createdAt": "2017-07-21T15:39:31.000Z",
"updatedAt": "2017-07-21T15:47:13.000Z"
}
]
};

obj.data[0].information = "someInformation";

console.log( obj );

关于javascript - 将数据添加到 JSON 数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45242030/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com