gpt4 book ai didi

.net - XSLT 使用默认 namespace 转换 XML 而不添加前缀?

转载 作者:数据小太阳 更新时间:2023-10-29 01:47:17 26 4
gpt4 key购买 nike

我正在尝试转换具有以下命名空间的 XML 文件,但无法找到一种方法使其在不向输出 XML 添加前缀的情况下使用默认命名空间。

原始 XML 文件:

<pExport xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://workflow.converga.com.au/compass">  

我可以通过向默认命名空间(最后一个)添加前缀来使其工作,但是如何在不添加前缀的情况下输出 XML,这可以通过在 .NET 4 中使用 XslCompiledTransform 实现吗?

最佳答案

I can make it working by adding a prefix to the default namespace (the last one), but how could I output a XML without adding a prefix, it is possible by using XslCompiledTransform in .NET 4 ?

这是一个具体的例子:

这个转换:

<xsl:stylesheet version="1.0"
xmlns="http://workflow.converga.com.au/compass"
xmlns:c="http://workflow.converga.com.au/compass"
xmlns:ext="http://exslt.org/common"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
exclude-result-prefixes="c ext xsl">
<xsl:output omit-xml-declaration="yes" indent="yes"/>
<xsl:strip-space elements="*"/>

<xsl:param name="pnewItem">
<item name="wine">
<price>3</price>
<quantity>5000</quantity>
</item>
</xsl:param>

<xsl:template match="node()|@*" name="identity">
<xsl:copy>
<xsl:apply-templates select="node()|@*"/>
</xsl:copy>
</xsl:template>

<xsl:template match="c:item[last()]">
<xsl:call-template name="identity"/>
<xsl:copy-of select="ext:node-set($pnewItem)/*"/>
</xsl:template>
</xsl:stylesheet>

在以下 XML 文档上应用 XslCompiledTransform 时:

<pExport xmlns="http://workflow.converga.com.au/compass">
<Goods>
<item name="tobacco">
<price>5</price>
<quantity>1000</quantity>
</item>
</Goods>
</pExport>

生成想要的(添加了新项目的相同 XML 文档),正确的结果:

<pExport xmlns="http://workflow.converga.com.au/compass">
<Goods>
<item name="tobacco">
<price>5</price>
<quantity>1000</quantity>
</item>
<item name="wine">
<price>3</price>
<quantity>5000</quantity>
</item>
</Goods>
</pExport>

关于.net - XSLT 使用默认 namespace 转换 XML 而不添加前缀?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3649272/

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