gpt4 book ai didi

xslt - 更改 XSL 转换中的命名空间值?

转载 作者:行者123 更新时间:2023-12-04 14:43:24 24 4
gpt4 key购买 nike

我不确定这是否可行,因为我对 XSLT 和其他东西还很陌生,但也许你们中的一些人可以帮助我吗?这有点棘手,我还没有在互联网上找到类似的东西:

问题是我有一个声明了命名空间的输入 xml,我只需要对其进行轻微的更改(添加或删除属性,或将它们移动到其他位置)。但与此同时,我必须更新文档文档标签中的 namespace 引用。因此,例如,输入 xml 可能如下所示:

<order
xmlns="some.url.01"
xmlns:ns2="some.other.url"
xmlns:ns3="another.one"
>
<orderEntry>
<orderControl>
<mandant>test</mandant>
<businessUnit>test</businessUnit>
<inboundChannel>test</inboundChannel>
<timestamp>timestamp</timestamp>
<requestedDocuments>
<ns2:document>orderForm</ns2:document>
</requestedDocuments>
</orderControl>
</orderEntry>
</order>

生成的 xml 应如下所示:

<order
xmlns="some.url.02"
xmlns:ns2="some.other.url.02"
xmlns:ns3="another.one.02"
>
<orderEntry>
<orderControl>
<mandant>test</mandant>
<businessUnit>test</businessUnit>
<inboundChannel>test</inboundChannel>
<!-- deleted timestamp for example -->
<requestedDocuments>
<ns2:document>orderForm</ns2:document>
</requestedDocuments>
</orderControl>
</orderEntry>
</order>

但我唯一得到的是:

<order
xmlns="some.url.02"
>
<orderEntry>
<orderControl>
<mandant>test</mandant>
<businessUnit>test</businessUnit>
<inboundChannel>test</inboundChannel>
<!-- deleted timestamp for example -->
<requestedDocuments>
<ns2:document xmlns:ns2="some.other.url.02">orderForm</ns2:document>
</requestedDocuments>
</orderControl>
</orderEntry>
</order>

现在也许对于你们中的一两个人来说这可能不是什么大不了的事,但我有一个限制,输出文档应该看起来与输入文档一对一相同,除了请求的更改(命名空间更改)和删除)。

我的 XSLT 看起来像这样:

<xsl:stylesheet
version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="some.url.02"
xmlns:ns2="some.other.url.02"
xmlns:ns3="another.one.02"
>
<xsl:output method="xml" version="1.0" encoding="UTF-8" standalone="yes" indent="yes"/>

<xsl:strip-space elements="*"/>

<xsl:template match="*">
<xsl:choose>
<xsl:when test="name(.) != 'timestamp'">
<xsl:element name="{node-name(.)}">
<xsl:apply-templates select="@*|node()"/>
</xsl:element>
</xsl:when>
</xsl:choose>
</xsl:template>

<xsl:template match="@*">
<xsl:attribute name="{node-name(.)}">
<xsl:value-of select="."/>
</xsl:attribute>
</xsl:template>
</xsl:stylesheet>

有人可以帮忙吗?命名空间很棘手:(

P.S.:编辑我条目的人:谢谢 :)

最佳答案

您可以使用命名空间属性在输出元素上设置命名空间:

<xsl:element name="{node-name(.)}" namespace="http://www.bar.org">
// ...
</xsl:element>

请注意,命名空间必须是一个 URI,尽管我希望您知道这一点,但在您的示例中使用 URI 可能是个好主意。

这是优秀的 ZVON 教程的链接,该教程已经运行示例: http://www.zvon.org/xxl/XSLTreference/Output/xslt_element_namespace.html

我同意 namespace 很棘手。如您所知,前缀在语义上是无关紧要的,但是许多系统允许您出于美观原因选择前缀。另请参阅 Saxon ( http://saxon.sourceforge.net/ )

编辑 我想您会在这里找到答案: XSLT root tag namespace instead of element attribute namespace

关于xslt - 更改 XSL 转换中的命名空间值?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1605481/

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