我有以下XML
<title>Products</title>
<products xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="products.xsd">
<product>
The product called <name>Lorem</name> is available for <price>€ 80</price> only.
</product>
</products>
现在我想格式化上面的XML。 name
应该是红色,price
应该是蓝色。
我尝试了以下内容:
<xsl:for-each select="products/product">
<div>
<p style="font-weight:bold">
<xsl:value-of select="text()"/>
<span style="color:red"><xsl:value-of select="name"/></span>
<span style="color:blue"><xsl:value-of select="price"/></span>
</p>
</div>
</xsl:for-each>
但这根本不起作用......
另外我想格式化标题,但我不确定如何获取XSLT文件中的内容。
答案 0 :(得分:0)
我建议您尝试不同的方法,按照以下方式:
<xsl:template match="product">
<div>
<p style="font-weight:bold">
<xsl:apply-templates/>
</p>
</div>
</xsl:template>
<xsl:template match="name">
<span style="color:red">
<xsl:apply-templates/>
</span>
</xsl:template>
<xsl:template match="price">
<span style="color:blue">
<xsl:apply-templates/>
</span>
</xsl:template>
请注意,这是不完整的 - 但您提供的代码也是如此。
另外我想格式化标题
以相同方式添加与title
匹配的模板。