我已经从中提取了一个样本xml.com
来证明我遇到的问题。
我有这个 XML:
<?xml version="1.0"?>
<!--slightly modified source from xml.com -->
<winelist xmlns="urn:somesite:api:base">
<wine grape="Chardonnay">
<winery>Lindeman's</winery>
<product>Bin 65</product>
<year>1998</year>
<prices>
<list>6.99</list>
<discounted>5.99</discounted>
<case>71.50</case>
</prices>
</wine>
<wine grape="Chardonnay">
<winery>Benziger</winery>
<product>Carneros</product>
<year>1997</year>
<prices>
<list>10.99</list>
<discounted>9.50</discounted>
<case>114.00</case>
</prices>
</wine>
<wine grape="Cabernet">
<winery>Duckpond</winery>
<product>Merit Selection</product>
<year>1996</year>
<prices>
<list>13.99</list>
<discounted>11.99</discounted>
<case>143.50</case>
</prices>
</wine>
<wine grape="Chardonnay">
<winery>Kendall Jackson</winery>
<product>Vintner's Reserve</product>
<year>1998</year>
<prices>
<list>12.50</list>
<discounted>9.99</discounted>
<case>115.00</case>
</prices>
</wine>
</winelist>
而这个 XSL:
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
<xsl:template match="winelist">
<xsl:copy>
<xsl:apply-templates>
<xsl:sort data-type="number" select="prices/discounted"/>
</xsl:apply-templates>
</xsl:copy>
</xsl:template>
<xsl:template match="*">
<xsl:copy>
<xsl:apply-templates/>
</xsl:copy>
</xsl:template>
</xsl:stylesheet>
我正在尝试wine
按折扣价对元素进行排序,但转换后的 XML 仍然未排序,除非我首先从酒单中删除名称空间(即,仅使用<winelist>
)。
如何修改 XSLT 以便不必手动移除名称空间?
此外,转换后的 XML 中的葡萄酒实体缺少它们的原始grape
属性。这些怎么保存?评论也是如此(虽然不是那么重要)。
我可以先使用另一个转换来删除所有命名空间,但我不太喜欢这种两步解决方案,我认为这可能是其他 XML 源问题的根源。
有人可以在这里帮助我吗?