Xslt - 强制 @attribute 唯一性

发布于 2024-08-13 23:10:15 字数 414 浏览 0 评论 0原文

我很少使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

辞旧 2024-08-20 23:10:15

这是一个仅获取唯一 @type 值的 XPath...

//childElement[not(@type=preceding::childElement/@type)]

...您的示例的结果是...

Location: 3:5
Description: /Element[1]/childElement[1] - Bob
Location: 5:5
Description: /Element[1]/childElement[3] - Bob

Here is an XPath to grab only the unique @type values...

//childElement[not(@type=preceding::childElement/@type)]

...result from your example is...

Location: 3:5
Description: /Element[1]/childElement[1] - Bob
Location: 5:5
Description: /Element[1]/childElement[3] - Bob
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文