我正在使用PhoneGap 1.2.0和Xcode 4开发一个应用程序。我有一个 JSON数据文件“appData.json”,我已经存储在www文件夹中 “的index.html”。我想使用以下代码从“appData.json”访问数据:
$.getJSON("appData.json",function(results){alert(results);});
但它不起作用。我认为问题在于文件的URL。该
代码无法访问appData.json
文件。
此代码在Adobe Dreamweaver 5.5中正常运行。
期待您的帮助!!!
答案 0 :(得分:0)
您的JSON数据的格式是什么?
$.getJSON("appData.json",function(results){alert(results);});
以上在Xcode 4.2和PhoneGap 1.2.0上对我来说很好。
我的'appData.json'文件包含:
[{"foo":"bar"},{"yadda":"yadda"}]