0

我想知道 Saxon 在 XSLT 期间如何以及为什么在 XSL 元素之间使用空格。这是一个可能受上述行为影响的示例:

在 XSLT 期间,Saxon 如何以及为什么在 XSL 元素之间使用空格?

<div style="display:none;">
    <xsl:choose>
      <xsl:when test="true">
        <xsl:attribute name="id">
           <xsl:choose>
              <xsl:when>
               etc ec
              </xsl:when>
              <xsl:otherwise></xsl:otherwise>
            </xsl:choose>
          </xsl:attribute>
         </xsl:when>
         <xsl:otherwise></xsl:otherwise>

</div>

为什么 the<div和 the之间的空格<xsl:choose>可能会导致以下错误:

XSLT attribute node (id) cannot be created after the children of the containing element
4

1 回答 1

1

仅包含空格的文本节点(如您的示例中的那个)没有效果(它们在解析的早期阶段被删除)除非您碰巧在样式表中的某些父元素上具有属性 xml:space="preserve" . (由于这样的原因,将 xml:space="preserve" 放在样式表中几乎总是坏消息,但人们不时这样做,这可能会导致这里的问题。)

另一种可能性(我在 12 年内只见过一次......)是看起来像空格的东西不是。例如,它可能包含一个不间断空格或零宽度空格,它们看起来是白色的,但不是正式的空格。

于 2012-09-06T22:50:50.903 回答