0

我测试了一个我用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>
4

2 回答 2

2

为了在 Phonegap v3.1 中访问外部资源:
打开您的 config.xml 文件,更改:

<access origin="http://127.0.0.1*"/>

<access origin="*" />

* 用作通配符,表示任何值都可以到那里,因此<access origin="*"/>表示允许应用程序访问 Internet 上的任何资源。

于 2014-01-13T06:40:26.807 回答
0

添加<access origin=".*"/>到您的 confog.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=".*"/>
于 2013-07-16T11:05:40.493 回答