在 xslt 中使用 copy-of 时删除 xml:space 属性
以下是我的 input.xml 文件中的部分代码:
<info>
<name>
<surname>Sachin</surname>
<x> </x>
<given-names>J</given-names>
</name>
<x>, </x>
<name>
<surname>Sushant</surname>
<x> </x>
<given-names>K</given-names>
</name>
</info>
当我使用 copy-of
元素复制这些节点时
<xsl:copy-of select="info"></xsl:copy-of>
,会生成以下输出:
<info>
<name>
<surname>Sachin</surname>
<x xml:space="preserve"> </x>
<given-names>J</given-names>
</name>
<x xml:space="preserve">, </x>
<name>
<surname>Sushant</surname>
<x xml:space="preserve"> </x>
<given-names>K</given-names>
</name>
</info>
我想删除 xml:我的 output.xml 文件中的 space="preserve"
。
The following is part of the code in my input.xml file:
<info>
<name>
<surname>Sachin</surname>
<x> </x>
<given-names>J</given-names>
</name>
<x>, </x>
<name>
<surname>Sushant</surname>
<x> </x>
<given-names>K</given-names>
</name>
</info>
When I copy these nodes by using copy-of
element as in
<xsl:copy-of select="info"></xsl:copy-of>
then the following output is generated:
<info>
<name>
<surname>Sachin</surname>
<x xml:space="preserve"> </x>
<given-names>J</given-names>
</name>
<x xml:space="preserve">, </x>
<name>
<surname>Sushant</surname>
<x xml:space="preserve"> </x>
<given-names>K</given-names>
</name>
</info>
I want to remove xml:space="preserve"
from my output.xml file.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
xsl:copy-of 制作精确的副本。如果您想进行任何更改,无论多么小,那么您需要使用“修改的身份模板”编码模式。在这种情况下,以下模板规则应该执行此操作:(
“ except”运算符是 XPath 2.0 - 如果您坚持使用 1.0,请使用
@*[name() != 'xml:space'])
xsl:copy-of makes an exact copy. If you want to make any changes at all, however small, then you need to use the "modified identity template" coding pattern. In this case, the following template rule should do it:
(The "except" operator is XPath 2.0 - if you're stuck with 1.0, use
@*[name() != 'xml:space']
)