我测试了一个我用Dreamweaver本地构建的应用程序jQuery mobile能够从服务器访问外部资源。在使用dreamweaver phonegap编译我的应用程序后,我发现我的应用程序无法远程连接以访问外部资源。我使用了eclipse,我能够使用super.loadUrl("http://webaddress/folder/index.html");
为我的应用指出起点。有什么方法可以使用我的config.xml为Dreamweaver phonegap指出我的应用程序的起点。
<?xml version="1.3.1" encoding="UTF-8" ?>
<widget xmlns = "http://www.w3.org/ns/widgets"
xmlns:gap = "http://phonegap.com/ns/1.3.1"
id = "com.phonegap.example"
version = "1.3.1.0">
<name>Go tv app</name>
<description>
A simple PhoneGap Build application.
</description>
<author href="https://example.com" email="you@example.com">
Benjamin Blay
</author>
<feature name="http://api.phonegap.com/1.3.1/device" />
<preference name="phonegap-version" value="2.0.0" />
<preference name="orientation" value="default" />
<preference name="target-device" value="universal" />
<preference name="fullscreen" value="false" />
<preference name="stay-in-webview" value="true" />
<!-- Icons -->
<icon src="icon.png" />
<icon src="images/icon-72x72.png" width="72" height="72" gap:platform="android" gap:density="hdpi" />
<icon src="images/icon-96x96.png" width="96" height="96" gap:platform="android" gap:density="xhdpi" />
<icon src="images/icon-72x72.png" width="72" height="72" gap:platform="ios" />
<!-- Splash Screens -->
<gap:splash src="splash_screen.jpg" />
<gap:splash src="images/splash_screen-160x220.jpg" gap:platform="android" gap:density="ldpi" />
<gap:splash src="splash_screen.jpg" gap:platform="android" gap:density="mdpi" />
<gap:splash src="images/splash_screen-450x650.jpg" gap:platform="android" gap:density="hdpi" />
</widget>
答案 0 :(得分:2)
为了访问Phonegap v3.1中的外部资源:
打开config.xml文件,更改:
<access origin="http://127.0.0.1*"/>
到
<access origin="*" />
*用作通配符,表示任何值都可以去那里,因此<access origin="*"/>
表示允许该应用访问互联网上的任何资源。
答案 1 :(得分:0)
将<access origin=".*"/>
添加到您的config.xml,请使用最新的phonegap版本
<access origin="http://127.0.0.1*"/> <!-- allow local pages -->
<!-- <access origin="https://example.com" /> allow any secure requests to example.com -->
<!-- <access origin="https://example.com" subdomains="true" /> such as above, but including subdomains, such as www -->
<access origin=".*"/>