具有特定值的节点上每个调用模板的 XSL



具有这样的XML结构:

<ContextDoc>
  <PurchaseOrder xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
    <OrderForms>
      <OrderForm>
        <Shipments>
          <Shipment>
            ...
            <ShippingMethodId>17995798-a2cc-43ad-81e8-bb932f6827e4</ShippingMethodId>
            ...
          </Shipment>
          <Shipment>
            ...
            <ShippingMethodId>11223344-a2cc-11bc-25a7-aa345f6827e6</ShippingMethodId>
            ...
          </Shipment>
        </Shipments>
        <LineItems>
          <LineItem>
            ...
            <ShippingMethodId>17995798-a2cc-43ad-81e8-bb932f6827e4</ShippingMethodId>
            ...
          </LineItem>
          <LineItem>
            ...
            <ShippingMethodId>17995798-a2cc-43ad-81e8-bb932f6827e4</ShippingMethodId>
            ...
          </LineItem>
          <LineItem>
            ...
            <ShippingMethodId>11223344-a2cc-11bc-25a7-aa345f6827e6</ShippingMethodId>
            ...
          </LineItem>
        </LineItems>
      </OrderForm>
    </OrderForms>
  </PurchaseOrder>
</ContextDoc>

从与每个"货件"节点匹配的模板中,我想使用当前的"装运方法"ID 循环行项目。这样:

<xsl:template match="Shipment">
    <xsl:for-each select="//LineItems/LineItem[ShippingMethodId=./ShippingMethodId]">
      <xsl:call-template name="LineItem">
      </xsl:call-template>
    </xsl:for-each>
</xsl:Template>

但这给了我每个货件下的所有行项目。为特定行项节点调用模板的正确方法是什么?

使用current()指向循环外部的上下文。循环内的.指向 lopp 的当前元素的上下文。喜欢这个:

<xsl:for-each select="//LineItems/LineItem[ShippingMethodId=current()/ShippingMethodId]">

此外,感觉您可以通过"匹配"来完成所需的一切,而无需调用函数等模板。让我们更多地了解您要完成的目标,我们可能会推荐一种更意识形态的方式来实现这一目标。例如,如果需要按这些ShippingMethodId进行分组,则可以使用Muenchian方法。

相关内容

  • 没有找到相关文章

最新更新