如何使用xsl对一行中的一组节点进行排序?
下面是我的 xml,
<products>
<product>
<item>Pen</item>
<price>10</price>
</product>
<product>
<item>Pencil</item>
<price>20</price>
</product>
<product>
<item>Bag</item>
<price>25</price>
</product>
</products>
我需要如下输出
product_name price remark
Pen 10 Pen+Pencil+Bag
Pencil 20 Pen+Pencil+Bag
Bag 25 Pen+Pencil+Bag
我如何在 xslt 1.0 中将 remark
作为组
Below is my xml
<products>
<product>
<item>Pen</item>
<price>10</price>
</product>
<product>
<item>Pencil</item>
<price>20</price>
</product>
<product>
<item>Bag</item>
<price>25</price>
</product>
</products>
i need output like below
product_name price remark
Pen 10 Pen+Pencil+Bag
Pencil 20 Pen+Pencil+Bag
Bag 25 Pen+Pencil+Bag
How i do remark
as group in xslt 1.0
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
此转换:
应用于提供的 XML 文档时:
产生所需的正确结果:
This transformation:
when applied on the provided XML document:
produces the wanted, correct result: