我不确定为什么在xslt中收到以下错误:
axis step child::element(_setmax42,xs:anytype)不能在此处使用:
上下文项是一个原子值
似乎是使用count on thexsl:when条件导致的,但我不明白为什么或者如何解决这个问题来得到我需要的东西。

  <xsl:variable name='_LoopVar_102_0_set' select="$_ManageWorkOrderSubmitWorkOrderRequest/soapenv:Envelope[1]/soapenv:Body[1]/bons1:ManageWorkOrderSubmitWorkOrderRequest[1]/WorkOrder[1]/CustomerAccount[1]/ServiceAddress[1]/LineCardInfo[1]/Cable"/>
  <xsl:variable name='_LoopVar_102_1_set' select="$_LoopVar_100_0/Cable"/>
  <xsl:variable name='_SetMax42r'>
    <xsl:choose>
      <xsl:when test="count($_LoopVar_102_0_set) >= count($_LoopVar_102_1_set)">
        <xsl:apply-templates select="$_LoopVar_102_0_set" mode='enumerate'/>
      </xsl:when>
      <xsl:when test="count($_LoopVar_102_1_set) >= count($_LoopVar_102_0_set)">
        <xsl:apply-templates select="$_LoopVar_102_1_set" mode='enumerate'/>
      </xsl:when>
    </xsl:choose>
  </xsl:variable>
  <xsl:variable name='_SetMax42' select="$_SetMax42r/*"/>
  <xsl:variable name='count2'>
    <xsl:choose>
      <xsl:when test='count(_SetMax42) = 0'>
        <xsl:value-of select="1"/>
      </xsl:when>
      <xsl:otherwise>
        <xsl:value-of select='count(_SetMax42)'/>
      </xsl:otherwise>
    </xsl:choose>
  </xsl:variable>
  <xsl:for-each select="1 to $count2">
    <xsl:variable name="_index43" select='$count2'/>
    <xsl:variable name='_LoopVar_102_0' select="$_LoopVar_102_0_set[position()=$_index43]"/>
    <xsl:variable name='_LoopVar_102_1' select="$_LoopVar_102_1_set[position()=$_index43]"/>

最佳答案

而不是

count(_SetMax42)

使用
count($_SetMax42)

……尽管你可能在其他地方也有类似的错误,因为仅仅这一点并不能完全解释你的错误信息。
更新:正如michael kay在评论中指出的,如果此时上下文项是一个原子值,那么仅进行上述修复就足够了。如果没有$_SetMax42将被视为上下文项的子元素,如果上下文项是节点,count()将返回0,但如果上下文项是原子值,则返回给定的错误消息失败。使用$$_setMax42不依赖于上下文项,添加$可以单独解决您的问题。

10-08 14:47