我正在XSLT文件中映射变量,但是我要映射许多变量。 WSO2
中是否有任何中介者可以这样做?
答案 0 :(得分:3)
<xsl:template match="@*|node()">
<xsl:copy>
<xsl:apply-templates select="@*|node()"/>
</xsl:copy>
</xsl:template>
应该工作。请尝试。
答案 1 :(得分:1)
WSO2有自己的XSLT介体,为什么不尝试使用它。
语法
<xslt key="string" [source="xpath"]>
<property name="string" (value="literal" | expression="xpath")/>*
<feature name="string" value="true| false" />*
<resource location="string" key="string"/>*
</xslt>