0

如何在我的文件中指明从我的网络服务器上config.xml启动我的手机应用程序?index.html这是给我的默认代码:

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

我想做的是这样的:

<access origin="https://server_add/folder/index.html*"/>

我正在使用PhoneGap。

4

1 回答 1

0

那不是这样做的。访问标签只允许访问外部资源。

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

完成此操作后,您可以轻松地将索引文件指向它需要去的地方。

<body onload="document.location.href='http://server_add/index.html';"> 
于 2013-07-16T16:57:09.967 回答