努力将 json 从 URL 上的文件 (myData.json) 加载到对象中,以便我可以访问属性值。
-- 数据立即加载,我在应用程序中非常需要它。
-- 我将访问整个应用程序中的数据,而不仅仅是在数据加载后立即发生的一个功能的一部分。
-- 我已经确保我的文件中的数据是正确格式的 json。
按照 jquery API 上的示例,我不应该做一些简单的事情,比如:
警报(jqxhr.myProperty);
并获得价值?我在这里缺少什么步骤?我试过运行 eval 和各种各样的东西,比如
var myObj=JSON.parse(jqxhr);
无济于事。
求求你了,谢谢你。
// Assign handlers immediately after making the request,
// and remember the jqxhr object for this request
var jqxhr = $.getJSON("example.json", function() {
alert("success");
})
.success(function() { alert("second success"); })
.error(function() { alert("error"); })
.complete(function() { alert("complete"); });
// perform other work here ...
// Set another completion function for the request above
jqxhr.complete(function(){ alert("second complete"); });