这种转变:
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:ns="some:ns">
<xsl:output method="text"/>
<xsl:strip-space elements="*"/>
<xsl:template match="/*/*[starts-with(local-name(), 'transport_')]">
<xsl:text>Transport type= </xsl:text>
<xsl:value-of select="substring-after(local-name(), 'transport_')"/>
<xsl:apply-templates/>
</xsl:template>
<xsl:template match="ns:transport_model[1]">
Model name:
<xsl:value-of select="normalize-space()"/>
</xsl:template>
</xsl:stylesheet>
应用于提供的 XML 文档时:
<ns:response xmlns:ns="some:ns">
<ns:transport_car>
<ns:transport_model> abc</ns:transport_model>
<ns:transport_model> xyz</ns:transport_model>
</ns:transport_car>
</ns:response>
产生想要的正确结果:
Transport type= car
Model name:
abc xyz