如何使phonegap应用程序指向某个URL?

时间:2014-12-13 19:28:13

标签: ios cordova

我发现了其他有关此问题的问题,我尝试了建议的答案,如下所示。

调整config.xml文件:

我将此<content src="index.html" />更改为<content src="localhost:3000" />

以及

<access origin="*" /></content src="localhost:3000" subdomains="true">

但每次启动我的应用程序时,它仍然指的是index.html文件。 我只是在iOS平台上尝试它。 出于测试目的,我每次都在线尝试网页,我使用phonegap serve从CLI启动应用程序,网页(localhost:3000),仍然引用index.html

对此有何见解?

1 个答案:

答案 0 :(得分:0)

您无法将设备指向localhost,因为localhost127.0.0.1的别名,无法通过网络访问。

您需要指向托管代码的计算机的实际IP地址。

示例:

<content src="192.75.64.231:3000" subdomains="true" />