Xslt - 强制 @attribute 唯一性
我很少使用 xslt,所以我不是最擅长的,但是,我想知道如何解决这个问题:
<Element>
<childElement type="type1">Bob</childElement>
<childElement type="type1">Smith</childElement>
<childElement type="type2">Bob</childElement>
</Element>"
我想强制 @type 唯一性,如果它们具有相同的值,我将只获取其中一个 ChildElements @类型。不同的 @type 可以具有相同的值(在本例中,2 个 Bob 就可以了)。有关如何在 xslt 中解决此问题的任何帮助吗?
I rarely work with xslt's so I'm not the greatest at it, but, I was wondering how to go about solving this problem:
<Element>
<childElement type="type1">Bob</childElement>
<childElement type="type1">Smith</childElement>
<childElement type="type2">Bob</childElement>
</Element>"
I want to enforce @type uniqueness, where I would just grab one of the ChildElements if they have the same @type. Different @types can have the same value (in this example, the 2 Bobs would be okay). Any help on how to solve this in xslt?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是一个仅获取唯一 @type 值的 XPath...
...您的示例的结果是...
Here is an XPath to grab only the unique @type values...
...result from your example is...