【发布时间】:2019-02-01 19:55:25
【问题描述】:
下面是我下面的 XML sn-p 。我在第一组中收到完整的标题,我的数据从病房的第二个元素组开始。在这里我怎样才能跳过第一组?就像我需要避免第一行元素并需要从第二行元素中使用。一些身体可以发光,我如何通过 XSLT 实现这一点?
<?xml version='1.0' encoding='UTF-8'?>
<root>
<row>
<Empl-Id>Empl Id</Empl-Id>
<Company>Company</Company>
<firstname>firstname</firstname>
<lastname>lastname</lastname>
<Goal-Amount>Goal Amount</Goal-Amount>
</row>
<row>
<Empl-Id>0111</Empl-Id>
<Company>A11</Company>
<firstname>Jumn</firstname>
<lastname>Henrry</lastname>
<Goal-Amount>100</Goal-Amount>
</row>
<row>
<Empl-Id>0112</Empl-Id>
<Company>A12</Company>
<firstname>Jumn2</firstname>
<lastname>Henrry2</lastname>
<Goal-Amount>120t</Goal-Amount>
</row>
【问题讨论】:
标签: xml xslt xml-parsing xslt-2.0 xslt-3.0