我正在尝试为所选“标题值”的<section>
标签实现HTML
以下XML:
<resource>
<Composition>
<section>
<title value="Attendance"/>
<section>
<section>
<title value="review of systems"/>
<section>
<section>
<title value="summary"/>
<section>
<section>
<title value="list"/>
<section>
<Composition>
<resource>
我想显示从XML中选择的标题值。
XSLT如下:
<xsl:element name="{$heading-tag}">
<xsl:choose>
<xsl:when test="fhir:title[@value='Attendance' 'summary']">
<xsl:value-of select="fhir:title[@value='Attendance' 'summary']"/>
</xsl:when>
<xsl:otherwise>
<xsl:value-of select="$untitled_section"/>
</xsl:otherwise>
</xsl:choose>
</xsl:element>
我是XSLT的新手。
我已经尝试过
<xsl:value-of>
<xsl:if>