如何在 xsl:for-each 中应用模板
how to apply templates within xsl:for-each
考虑这个 xml 结构:
<Lists>
<PriceList Lab="50|51|03|21">
<action order="11" type="1" />
<action order="12" type="2" />
</PriceList>
<PriceList Lab="100">
<action order="13" type="3" />
<action order="14" type="4" />
</PriceList>
</Lists>
Lab 被 tokenize() 拆分,然后对每个 lab 操作都应该应用。
我尝试使用 for-each,然后使用 select 动作标签。但它不起作用,
editix 说 "Axis step child::element(action, xs:anyType) cannot be used here: the context item is an atomic value"。这是 xslt.
<xsl:stylesheet version="2.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:template match="action">
<xsl:value-of select="@order"/>
</xsl:template>
<xsl:template match="PriceList[@Lab]">
<xsl:for-each select="tokenize(@Lab, '\|')">
<xsl:value-of select="." />
<xsl:apply-templates select="action" />
</xsl:for-each>
</xsl:template>
<xsl:template match="/">
<xsl:apply-templates />
</xsl:template>
</xsl:stylesheet>
我该怎么做才能使这项工作正常进行?
您需要在 for-each
:
之外定义一个变量
<xsl:template match="PriceList[@Lab]">
<xsl:variable name="this" select="."/>
<xsl:for-each select="tokenize(@Lab, '\|')">
<xsl:value-of select="." />
<xsl:apply-templates select="$this/action" />
</xsl:for-each>
</xsl:template>
考虑这个 xml 结构:
<Lists>
<PriceList Lab="50|51|03|21">
<action order="11" type="1" />
<action order="12" type="2" />
</PriceList>
<PriceList Lab="100">
<action order="13" type="3" />
<action order="14" type="4" />
</PriceList>
</Lists>
Lab 被 tokenize() 拆分,然后对每个 lab 操作都应该应用。 我尝试使用 for-each,然后使用 select 动作标签。但它不起作用, editix 说 "Axis step child::element(action, xs:anyType) cannot be used here: the context item is an atomic value"。这是 xslt.
<xsl:stylesheet version="2.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:template match="action">
<xsl:value-of select="@order"/>
</xsl:template>
<xsl:template match="PriceList[@Lab]">
<xsl:for-each select="tokenize(@Lab, '\|')">
<xsl:value-of select="." />
<xsl:apply-templates select="action" />
</xsl:for-each>
</xsl:template>
<xsl:template match="/">
<xsl:apply-templates />
</xsl:template>
</xsl:stylesheet>
我该怎么做才能使这项工作正常进行?
您需要在 for-each
:
<xsl:template match="PriceList[@Lab]">
<xsl:variable name="this" select="."/>
<xsl:for-each select="tokenize(@Lab, '\|')">
<xsl:value-of select="." />
<xsl:apply-templates select="$this/action" />
</xsl:for-each>
</xsl:template>