我是XSL的新手,遇到了一个问题。
我有以下格式的 xml:
<Destinations>
<conf:Destination id="12">
<conf:attributes>
<conf:attribute1>1212</conf:attribute1>
</conf:attributes>
</conf:Destination>
<conf:Destination id="31">
<conf:attributes>
<conf:attribute1>3131</conf:attribute1>
</conf:attributes>
</conf:Destination>
</Destinations>
说,我有一个带有以下 2 个参数的 xsl:
<xsl:param name="attribute12" select="'21'" />
<xsl:param name="attribute31" select="'5'" />
我想在 XSLT 1 中有一个 xsl 模板来更改我的 xml,如下所示:1) 对于 xml 中的目标 id=12,"conf:attribute1"标签中的值设置为 212) 对于 xml 中的目标 id=31,"conf:attribute1"标签中的值设置为 5
这样,我将获得最终的xml为:
<Destinations>
<conf:Destination id="12">
<conf:attributes>
<conf:attribute1>21</conf:attribute1>
</conf:attributes>
</conf:Destination>
<conf:Destination id="31">
<conf:attributes>
<conf:attribute1>5</conf:attribute1>
</conf:attributes>
</conf:Destination>
</Destinations>
任何人都可以帮忙。
使用标识转换模板
<xsl:template match="@* | node()">
<xsl:copy>
<xsl:apply-templates select="@* | node()"/>
</xsl:copy>
</xsl:template>
然后是两个模板
<xsl:template match="conf:Destination[@id='12']/conf:attributes/conf:attribute1">
<xsl:copy>
<xsl:value-of select="$attribute12"/>
</xsl:copy>
</xsl:template>
<xsl:template match="conf:Destination[@id='31']/conf:attributes/conf:attribute1">
<xsl:copy>
<xsl:value-of select="$attribute31"/>
</xsl:copy>
</xsl:template>