如果 XPath 查询中不存在第一个节点,我如何返回不同的节点? [英] How do I return a different node if the first node doesn't exist in an XPath Query?

查看:22
本文介绍了如果 XPath 查询中不存在第一个节点,我如何返回不同的节点?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如果第一个不存在,我想返回一个辅助节点名称,例如:

I'd like to return a secondary node name if the first doesn't exist, for example:

return xpath_query("/root/(blue|red)");
// return /root/blue, or /root/red if it doesn't exist

这可能吗?

谢谢

推荐答案

答案:是的.

这是一个有效的 XPath 2.0 表达式:

That's a valid XPath 2.0 expression:

/root/(blue|red)

含义:root 根元素的 bluered 子元素.

Meaning: blue and red children of root root element.

如果您想要一个另一个(如果不存在),您可以依赖文档顺序,例如:

If you want one or the other if that doesn't exist, you could rely on document order like:

/root/(blue|red)[1]

或者更明确地说:

/root/(if (blue) then blue else red)

XPath 1.0 翻译:

XPath 1.0 translations:

/root/*[self::blue|self::red]

/root/*[self::blue|self::red][1]

/root/*[self::blue|self::red[not(../blue)]]

这篇关于如果 XPath 查询中不存在第一个节点,我如何返回不同的节点?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆