1

假设有这个基本的 xml 文档:

<result name="response" numFound="73" start="0">
    <doc>
        <str name="contentType">Content1</str>
        <str name="content">Some content here</str>
    </doc>
    <doc>
        <str name="contentType">Content2</str>
        <str name="content">Some other content</str>
    </doc>
</result>

我计划为每种内容类型使用不同的模板。模板匹配参数是什么?当只有 contentType 字段是特定值时,我无法弄清楚如何匹配 doc 的其他子项。

4

1 回答 1

6

听起来你想要的是这样的:

<xsl:template match="doc[str[@name = 'contentType'] = 'Content1']
                     /str[name = 'Content']">
   <!-- Process Content1 content str -->
</xsl:template>

<xsl:template match="doc[str[@name = 'contentType'] = 'Content2']
                     /str[name = 'Content']">
   <!-- Process Content2 content str -->
</xsl:template>

或者可能是这样的?

<xsl:template match="doc[str[@name = 'contentType'] = 'Content1']">
   <!-- Process Content1 doc -->
</xsl:template>

<xsl:template match="doc[str[@name = 'contentType'] = 'Content2']">
   <!-- Process Content2 doc -->
</xsl:template>

这些中的任何一个都是您正在寻找的吗?

于 2013-03-18T16:22:15.747 回答