<?xml version='1.0' enCoding='utf-8' ?><Widget ID="io.cordova.hellocordova" version="0.0.1" 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" version="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></Widget>
使用gulp-xml-editor我正在尝试创建一个插件来编辑name的值,但无论我如何尝试,我都无法获得正确的xpath元素.
我试过的选项:
> .//* [name]
> .//*/Widgets:name
> //名字
没有成功.知道它是什么?
解决方法 元素< name>在默认名称空间xmlns =“http://www.w3.org/ns/Widgets”中.通常在xpath中,要选择命名空间中的元素,您需要注册指向命名空间uri的前缀,并在xpath中使用该前缀.我不知道gulp-xml-editor,但是在GitHub页面you linked中似乎有一个非常接近的例子,特别是评论“使用命名空间使用用户特定对象编辑XML文档”:
/* edit XML document by using user specific object using a namespace*/gulp.src("./manifest.xml") .pipe(xeditor([ {path: '//xmlns:name',text: 'new names'},],'http://www.w3.org/ns/Widgets')) .pipe(gulp.dest("./dest"));总结
以上是内存溢出为你收集整理的获取cordova的config.xml的XPath全部内容,希望文章能够帮你解决获取cordova的config.xml的XPath所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)