如何使用 XQuery fn:idref() 函数?

发布于 2024-11-16 09:02:33 字数 428 浏览 4 评论 0原文

我无法让 XQuery 函数 fn:idref() 返回任何内容。

我有这个 XML 文档 doc.xml

<doc>
  <foo idref="xyz"/>
  <bar xml:id="xyz"/>
</doc>

还有这个 XQuery;

let $d := doc("doc.xml")
return $d/idref("xyz")

但结果始终是空的。我猜测属性 idref="xyz" 需要声明为类型 idref 但可以在没有模式的情况下完成吗?

我正在使用 Saxon XQuery 1.0 处理器。

I can't get the XQuery function fn:idref() to return anything.

I have this XML document doc.xml;

<doc>
  <foo idref="xyz"/>
  <bar xml:id="xyz"/>
</doc>

And this XQuery;

let $d := doc("doc.xml")
return $d/idref("xyz")

But the result is always empty. I'm guessing that the attribute idref="xyz" needs to be declared as type idref but can that be done without a schema?

I'm using Saxon XQuery 1.0 processor.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

三岁铭 2024-11-23 09:02:33

是的,idref() 函数仅检索标记为 IDREF 的属性,并且这仅作为模式验证的结果发生。

有一个已弃用的旧设置 config.setRetainDTDAttributeTypes() 允许它作为 DTD 验证的结果工作,但我不会使用它。

您始终可以执行 doc("doc.xml")//*[@idref="xyz"]。这将导致 Saxon-HE 和 Saxon-PE 中的串行搜索,但将使用 Saxon-EE 中的索引。我通常会推荐使用 idref() 函数。

当然,在 XSLT 中,您可以使用键。

Yes, the idref() function only retrieves attributes labelled as being IDREFs, and that only happens as a result of schema validation.

There's a deprecated legacy setting config.setRetainDTDAttributeTypes() that allows it to work as a result of DTD validation, but I wouldn't use it.

You can always do doc("doc.xml")//*[@idref="xyz"]. This will result in a serial search in Saxon-HE and Saxon-PE, but will make use of an index in Saxon-EE. I would generally recommend this over using the idref() function.

In XSLT, of course, you can use keys.

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