我有一个要格式化的可与Cordova一起使用的React应用。到目前为止,我可以使用cordova run browser
来使其在浏览器上正常运行,但是当我尝试在iOS模拟器cordova run ios
上运行时,出现白屏。我为<content src="index.html"/>
尝试了其他选项,但没有一个能正常工作。
如果我在其中输入任何值,例如“ /”,则会收到消息“错误:找不到位于'www //'的起始页”。我之前解决的问题是,当我在浏览器中启动应用程序时,它将解决为localhost:8000 / index.html,该屏幕将显示白屏。 Safari上的远程开发工具显示所有内容都已加载到内存中,但没有显示。如果我删除了扩展名而只是去了localhost:8000,它将正常工作。我已经为浏览器手动解决了该问题,但无法解决。我怀疑可能正在发生相同的事情,但是在模拟器上,我无法从路径中删除index.html。
有一个类似的问题how to set the Cordova configuration?,但没有得到答案。是否有解决的办法,或者至少使我朝正确的方向解决?下面是我的config.xml
<?xml version='1.0' encoding='utf-8'?>
<widget id="io.cordova.hellocordova" version="1.0.0" xmlns="http://www.w3.org/ns/widgets" xmlns:cdv="http://cordova.apache.org/ns/1.0">
<name>HelloCordova</name>
<description>
A sample Apache Cordova application that responds to the deviceready event.
</description>
<author email="dev@cordova.apache.org" href="http://cordova.io">
Apache Cordova Team
</author>
<content src="./" />
<access origin="*" />
<allow-intent href="http://*/*" />
<allow-intent href="https://*/*" />
<allow-intent href="tel:*" />
<allow-intent href="sms:*" />
<allow-intent href="mailto:*" />
<allow-intent href="geo:*" />
<allow-navigation href="*" />
<platform name="android">
<allow-intent href="market:*" />
</platform>
<platform name="ios">
<allow-intent href="itms:*" />
<allow-intent href="itms-apps:*" />
</platform>
<plugin name="cordova-plugin-whitelist" spec="^1.3.4" />
</widget>