我正在尝试执行以下操作。
我需要将列表或地图传递给xslt,然后遍历地图或列表并显示值。
列表或地图将包含XML。但不会总是大小相同。
<?xml version="1.0" encoding="utf-8"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:template match="*">
<xsl:variable name="map">
<Response>
<result type="xsd:string">
<xsl:text disable-output-escaping="yes"><![CDATA[</xsl:text>
// loop through value in map/list and display it
<xsl:copy-of select="firstValueInMap"/>
<xsl:copy-of select="secondValueInMap"/>
<xsl:copy-of select="thirdValueInMap"/>
<xsl:text disable-output-escaping="yes">]]></xsl:text>
</result>
</Response>
</xsl:template>
</xsl:stylesheet>
这可能吗?我对XSLT不太熟悉
由于