gpt4 book ai didi

jquery - 如果 JSON 对象中有空格,则会出现语法错误。如何逃离太空?

转载 作者:行者123 更新时间:2023-12-01 03:36:51 25 4
gpt4 key购买 nike

有如下所示的 JSON

callback({
"response":{
"docs":[
{
"A":"qwe",
"B":"asd",
"C":"zxc",
"D":"mnb",
}]
"Mapped Site":[
"qaw",123,
"asd",123,
"qwe",123
]
},
})

我正在尝试使用 Jquery ajax api 读取 JSON 数据,如下所示

$.ajax({
type: "GET",
url: "http://qqq.com/",
crossDomain: true,
jsonpCallback: 'callback',
contentType: "application/json; charset=utf-8",
dataType: "jsonp",
success: function (msg) {
sourcearr = $(msg.response.Mapped Site);
sourcearr = $.map(sourcearr, function (el) { return el; });
alert(sourcearr);
}
});

这会在 Firebug 中引发语法错误,因为映射站点中存在空格

如何转义并读取数据?

最佳答案

如果数组有空格,您可以像从数组中获取数据一样访问 json 键。

msg.response["Mapped Site"]

关于jquery - 如果 JSON 对象中有空格,则会出现语法错误。如何逃离太空?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31453865/

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