gpt4 book ai didi

node.js - nodejs xml2j 如何跳过Prefix

转载 作者:太空宇宙 更新时间:2023-11-04 02:19:22 24 4
gpt4 key购买 nike

我已阅读 documentation但我似乎不太能让skipPrefix 与xml2js 一起使用。我想做的是给定以下 xml 删除命名空间前缀。

<root>
<part:tire>A</part:tire>
</root>

我希望 json 对象排除“part:”。

谢谢

最佳答案

来自source code

prefixMatch = new RegExp(/(?!xmlns)^.*:/);
...
exports.stripPrefix = function(str) {
return str.replace(prefixMatch, '');
};

我认为您的 xml 字符串需要有适当的命名空间才能使该功能正常工作。

关于node.js - nodejs xml2j 如何跳过Prefix,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34212840/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com