如何使用 XQuery fn:idref() 函数?
我无法让 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,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 theidref()
function.In XSLT, of course, you can use keys.