使用 XSLT 进行求和和类别分组
使用 XSLT,如何将以下内容更改
<root>
<element id="1" State="Texas" County="Dallas" Population="2412827" />
<element id="2" State="Texas" County="Harris" Population="3984349" />
<element id="3" state="Georgia" County="Fulton" Population="1014932" />
<element id="4" state="Georgia" County="Richmond" Population="212775" />
</root>
为:
<body>
<h2>Texas</h2>
<table>
<tr><td>Dallas</td><td>2412827</td></tr>
<tr><td>Harris</td><td>3984349</td></tr>
<tr><td>Total</td><td>6397176</td></tr>
<h2>Georgia</h2>
<table>
<tr><td>Fulton</td><td>1014932</td></tr>
<tr><td>Richmond</td><td>212775</td></tr>
<tr><td>Total</td><td>1227707</td></tr>
</table>
</body>
而不显式编码每个州的名称,因为如果波多黎各成为一个州,我就会完蛋。
With XSLT, how can I change the following:
<root>
<element id="1" State="Texas" County="Dallas" Population="2412827" />
<element id="2" State="Texas" County="Harris" Population="3984349" />
<element id="3" state="Georgia" County="Fulton" Population="1014932" />
<element id="4" state="Georgia" County="Richmond" Population="212775" />
</root>
into:
<body>
<h2>Texas</h2>
<table>
<tr><td>Dallas</td><td>2412827</td></tr>
<tr><td>Harris</td><td>3984349</td></tr>
<tr><td>Total</td><td>6397176</td></tr>
<h2>Georgia</h2>
<table>
<tr><td>Fulton</td><td>1014932</td></tr>
<tr><td>Richmond</td><td>212775</td></tr>
<tr><td>Total</td><td>1227707</td></tr>
</table>
</body>
without explicitly coding each state's name, because I would be screwed if Puerto Rico ever became a state.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
XSLT 1.0
定义一个关键的“状态”,从中我们可以轻松地选择给定状态名称的所有状态。然后应用 Muenchian 分组来查找输入中的唯一状态。
然后事情就变得简单了。 “元素”模板将针对每个状态名称应用一次,并使用 key() 获取该状态的所有条目。
XSLT 2.0
XSLT 1.0
Define a key "state", from which we can easily select all states given a state name. Than apply Muenchian grouping to find the unique states in the input.
Then it gets simple. The "element" template will be applied once per state name, and uses the key() to fetch all entries for that state.
XSLT 2.0