有什么方法可以更改src
中存在的内容标签的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="index.html" />
<plugin name="cordova-plugin-whitelist" spec="1" />
<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:*" />
<platform name="android">
<allow-intent href="market:*" />
</platform>
<platform name="ios">
<allow-intent href="itms:*" />
<allow-intent href="itms-apps:*" />
</platform>
<engine name="browser" spec="^5.0.4" />
<engine name="android" spec="^7.1.4" />
</widget>
我想要src
属性类似
<content src="'${cordova.app.url}'/index.html">
和cordova.app.url
我想在一个名为application.properties
的文件中声明,就像在Spring Hibernate项目中看到的那样。
application.properties
cordova.app.url=http://f9/
cordova.app.name=HelloWorld
...
所以我想在我的cordova项目中找到一个文件,在其中可以声明带有值的属性,并将其用于config.xml
或其他文件中。有可能吗?