0

为什么 copy-namespaces="no" 不删除未在 XSLT 的输出文档中引用的名称空间声明?我正在使用 MarkLogic 5 XSLT 处理器。

样本输入

<root xmlns:temp="http://temp" xmlns:keep="http://keep">
  <wrapper><temp:x>A</temp:x>BC<temp:x>D</temp:x></wrapper>
  <keep:me>XYZ</keep:me>
</root>

示例 XSL

<xsl:stylesheet version="2.0"
  xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
  xmlns:temp="http://temp"
  xmlns:keep="http://keep"
  exclude-result-prefixes="#all">

<xsl:template match="node()|@*" priority="-1" mode="#all">
    <xsl:copy copy-namespaces="no">
        <xsl:apply-templates select="@*|node()" mode="#current"/>
    </xsl:copy>
</xsl:template>

<xsl:template match="temp:x">
  <xsl:apply-templates />
</xsl:template>

</xsl:stylesheet>

预期产出

<root xmlns:keep="http://keep">
  <wrapper>ABCD</wrapper>
  <keep:me>XYZ</keep:me>
</root>

实际输出

<root xmlns:temp="http://temp" xmlns:keep="http://keep">
  <wrapper>ABCD</wrapper>
  <keep:me>XYZ</keep:me>
</root>
4

1 回答 1

3

我向 MarkLogic 支持确认这是一个错误,他们正在努力修复。

同时,我使用这些模板代替身份模板作为解决方法:

<xsl:template match="*" priority="-1" mode="#all">
    <xsl:element name="{name(.)}">
        <xsl:apply-templates select="@*|node()" mode="#current"/>
    </xsl:element>
</xsl:template>

<xsl:template match="@*" priority="-1" mode="#all">
    <xsl:attribute name="{name(.)}" select="."/>
</xsl:template>

<xsl:template match="comment()|processing-instruction()|text()" priority="-1" mode="#all">
    <xsl:copy/>
</xsl:template>
于 2012-09-14T18:43:40.877 回答