假设我有这个 XML 文件
<section name="AAA">
<Item1>FALSE</Item1>
<Item2>FALSE</Item2>
<Item3>FALSE</Item3>
</section>
<section name="BBB">
<Item1>FALSE</Item1>
<Item2>FALSE</Item2>
<Item3>FALSE</Item3>
</section>
现在我想创建一个 xsl 文件,它将在表格中显示数据,如下所示
AAA BBB
Item1 FALSE FALSE
Item2 FALSE FALSE
Item3 FALSE FALSE
我尝试了几种语法,但都没有给我我想要的我可以在这里获得帮助或示例吗?