gpt4 book ai didi

javascript - 使用 JSON.stringify() 的替换数组包含所有对象属性

转载 作者:行者123 更新时间:2023-11-28 18:40:09 25 4
gpt4 key购买 nike

我有这个对象,我们将其称为 JSONchunk:

{
"stuffIWant": {
"number": 123,
"string": "string",
"boolean": true
},
"boringDumbStuff": {
"number": 456,
"boolean": false
}
}

我想获取stuffIWant的所有属性。 但是,我不知道 stuffIWant 在给定时间将包含的所有属性。

我希望使用 JSON.stringify(JSONchunk, ['stuffIWant']) 但我只得到了我想要的部分输出。即,它返回 {stuffIWant: {}}。关闭,但没有香烟。

编辑:这是我正在寻找的结果。

{
"stuffIWant": {
"number": 123,
"string": "string",
"boolean": true
},
}

有没有办法使用替换数组返回一个对象及其所有属性,而无需显式引用数组中的这些属性?或者我需要制作一些更复杂的东西吗?

最佳答案

简单:

JSON.stringify(JSONchunk.stuffIWant)

关于javascript - 使用 JSON.stringify() 的替换数组包含所有对象属性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36252287/

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