Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我不可能following-sibling在我的 XPath 中使用轴。如何在不使用轴的情况下在 XPath 中获得相同的功能?这是真的吗?
following-sibling
提前致谢。
也许您正在使用没有全轴支持的 XQuery 1.0 实现?如果是这种情况,你可以following-sibling::x写成
following-sibling::x
let $x := . return ../x[. >> $x]
如果您不使用没有全轴支持的 XQuery 1.0,那么我认为我们需要知道您在使用什么。