gpt4 book ai didi

javascript - 从json对象中获取值并返回格式数据

转载 作者:行者123 更新时间:2023-12-02 16:36:06 25 4
gpt4 key购买 nike

我正在开发我的第一个 JSON 项目,但我不知道如何以所需的格式返回 JSON,尤其是在这种情况下。我有以下 JSON:

function AreaToJSON() {
var d = [];
$.each(selectedArea, function (index, value) {
d.push({ AreaID: value.AreaID });
});
return d;
}

那些 JSON 返回这样的数据

[Object {AreaID : "1.3.1"}, Object{AreaID : "1.3.11"}, Object{AreaID : "1.12.4"}]

我需要这样的返回值:

["1.3.1", "1.3.11", "1.12.4"]

对我的案例有什么建议吗?

最佳答案

只需推送value.AreaID

$.each(selectedArea, function (index, value) {
d.push(value.AreaID); // now it is an array of strings
});

此外,如果您希望将其作为 JSON,请使用 JSON.stringify 并解析 JSON 字符串,请使用 JSON.parse

关于javascript - 从json对象中获取值并返回格式数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27917559/

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