使用子节点的 XSLT 分组

XSLT grouping using child nodes

提问人:Varsha Narayanan 提问时间:10/30/2023 更新时间:10/30/2023 访问量:29

问:

我是 XSLT 映射的新手。我有一个场景,我需要根据子节点的条件对所有组进行分组。例如,我需要根据学生的成绩对学生组进行分组,并显示有多少人通过了考试而未通过考试。 请解释每个组也是如何使用的。

<student>
<biodata>
<biodata_name>AAA</biodata_name>
<biodata_fname>Faaa</biodata_fname>
</biodata>
<marks>
<term1>
<term1_sub1>24</term1_sub1>
<term1_sub2>23</term1_sub2>
<term1_res>Pass</term1_res>
</term1>
</marks>
</student>
<student>
<biodata>
<biodata_name>BBB</biodata_name>
<biodata_fname>Fbbb</biodata_fname>
</biodata>
<marks>
<term1>
<term1_sub1>22</term1_sub1>
<term1_sub2>23</term1_sub2>
<term1_res>Pass</term1_res>
</term1>
</marks>
</student>
<student>
<biodata>
<biodata_name>CCC</biodata_name>
<biodata_fname>Fccc</biodata_fname>
</biodata>
<marks>
<term1>
<term1_sub1>14</term1_sub1>
<term1_sub2>13</term1_sub2>
<term1_res>Fail</term1_res>
</term1>
</marks>
</student>

我不懂分组

XSLT XSLT-2.0

评论

1赞 michael.hor257k 10/30/2023
请发布具体问题,而不是教程请求。
0赞 Michael Kay 10/30/2023
写下你对解决方案的最佳尝试,如果它不起作用,请发布你的尝试,然后我们可以告诉你它有什么问题。除非我们具体知道你为什么被卡住,否则我们所能做的就是将你指向那里的众多书籍和教程之一。

答: 暂无答案