我发现了其他有关此问题的问题,我尝试了建议的答案,如下所示。
调整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
对此有何见解?
答案 0 :(得分:0)
您无法将设备指向localhost
,因为localhost
是127.0.0.1
的别名,无法通过网络访问。
您需要指向托管代码的计算机的实际IP地址。
示例:
<content src="192.75.64.231:3000" subdomains="true" />