提问人:Varsha Narayanan 提问时间:10/30/2023 更新时间:10/30/2023 访问量:29
使用子节点的 XSLT 分组
XSLT grouping using child nodes
问:
我是 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>
我不懂分组
答: 暂无答案
评论