gpt4 book ai didi

javascript - 在 JQuery 中读取 json

转载 作者:行者123 更新时间:2023-11-28 06:29:45 33 4
gpt4 key购买 nike

我有这个 json 文件,对于每个事件(何时),我有一些 react (做):

{"title":"Building blocks",
"date":"'1452786221'",
"scenes":[
[{
"when":{"event":"init"},
"goto":""
},
{
"when":{"event":"e_dTou","position":"up"},
"do":[
{"action":"a_dME","position":"open"},
{"action":"a_dME","position":"close"}
],
"goto":""
}
]
]}

我使用ajax调用从文件manifest.json中读取了这个json,因此返回的数据是已经解析的文本。

url = "json/manifest.json";
$.ajax({
type: "POST",
url: url,
success: function(data) {
console.log(data.scenes.when);
},
error: function() {
alert("Call" + url + " failed...");
}
});

通过控制台上的代码,我有 undefined 。我想在 JQuery 中读取这个 json 的所有数据并将其写入控制台。我该怎么做?预先感谢您。

最佳答案

您可以使用$.getJSON
示例:

$.getJSON( "url/to/file.json", function(data) {
var items = [];
$.each( data, function( key, val ) {
items.push( key + ': ' + val );
});
console.log( 'items: ', items );
});

关于javascript - 在 JQuery 中读取 json,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34808334/

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