允许在HTML5 Phonegapped Android应用程序开放的本地文件应用程序、本地文件、Phonegapped、Android

2023-09-08 10:19:19 作者:南栀.

我有一个HTML5应用程序。其中正常运行在浏览器中。而罚款时,结束了作为一个iOS应用程序。 然而,当我打造为Android,我通过ADB调试时收到以下消息。

I have a HTML5 app. Which runs fine in a browser. And fine when wrapped up as an iOS app. However when I build for Android I am getting the following message when debugging through adb.

XMLHttpRequest cannot load file:///android_asset/www/data/translations.json. Origin null is not allowed by Access-Control-Allow-Origin. at null:1

这时候我打电话尝试加载与 $文件时发生。的getJSON

This occurs when I call try to load the file with $.getJSON

显然,这可以用Java解决了与

Apparently this can be resolved in JAVA with

if (Build.VERSION.SDK_INT >= VERSION_CODES.JELLY_BEAN) {
  webView.getSettings().setAllowUniversalAccessFromFileURLs(true);
}

不过,我需要一种方法来做到这一点的HTML5应用程序包与PhoneGap的。我怎样才能开启此设置?

However, I need a way to do this in a HTML5 app wrapped up with phonegap. How can I turn this setting on?

推荐答案

更​​新到最新(在发布2.8.1的时间)科尔多瓦瓶解决了问题。

Updating to the lastest (at time of posting 2.8.1) cordova jar resolved the issue.

 
精彩推荐
图片推荐