我正在使用Intel xdk开发应用程序,并且必须向网站提出json请求。
如果我尝试从xdk模拟器尝试该应用程序,并且尝试使用该应用程序预览,但如果我构建了apk文件,请安装它,则请求失败。
这是示例调用:
$.getJSON("http://time.jsontest.com", function(data){
alert(data);});
这是响应:
GET http://time.jsontest.com/ 404 (Not Found)
我的设备显然已连接。
我在index.html中包含了this page所说的“ intelxdk.js”和“ xhr.js”
最佳答案
好的,解决了。我必须在config.xml文件中添加<access origin="*" />
。
此处更多信息:https://cordova.apache.org/docs/en/4.0.0/guide_appdev_whitelist_index.md.html
关于javascript - Intel XDK $ .getJson在APK上失败,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/29177822/