XPath 运算符“!=”。它是如何运作的?
XML 文档:
<doc>
<A>
<Node>Hello!</Node>
</A>
<B>
<Node/>
</B>
<C>
</C>
<D/>
</doc>
您将如何评估以下 XPath 查询?
/doc/A/Node != 'abcd'
/doc/B/Node != 'abcd'
/doc/C/Node != 'abcd'
/doc/D/Node != 'abcd'
我希望所有这些都评估为true。
然而,结果如下:
/doc/A/Node != 'abcd' true
/doc/B/Node != 'abcd' true
/doc/C/Node != 'abcd' false
/doc/D/Node != 'abcd' false
这是预期的行为吗?或者是我的 XPath 提供程序 (jaxen) 的错误?
XML document:
<doc>
<A>
<Node>Hello!</Node>
</A>
<B>
<Node/>
</B>
<C>
</C>
<D/>
</doc>
How would you evaluate the following XPath queries?
/doc/A/Node != 'abcd'
/doc/B/Node != 'abcd'
/doc/C/Node != 'abcd'
/doc/D/Node != 'abcd'
I would expect ALL of these to evaluate to true.
However, here are the results:
/doc/A/Node != 'abcd' true
/doc/B/Node != 'abcd' true
/doc/C/Node != 'abcd' false
/doc/D/Node != 'abcd' false
Is this expected behavior? Or is it a bug with my XPath provider (jaxen)?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
建议:当一个或两个参数都是节点集时,切勿使用
!=
运算符来比较不等式。根据定义表达式:
当
$node-set
中至少有一个节点且其字符串值不等于$value 的字符串值时,计算结果为
。true()
使用此定义:
始终为
false()
,因为$empty-nodeset
中甚至没有一个节点满足不等式。解决方案:
使用:
然后您将获得所需的所有结果
true()
。Recommendation: Never use the
!=
operator to compare inequality where one or both arguments are node-sets.By definition the expression:
evaluates to
true()
exactly when there is at least one node in$node-set
such that its string value is not equal to the string value of$value
.Using this definition:
is always
false()
, because there isn't even a single node in$empty-nodeset
for which the inequality holds.Solution:
Use:
Then you get all results
true()
, as wanted.来自 XPath 规范:
这意味着如果节点集为空(如情况 C 和 D 所示),则布尔表达式的结果将为 false,因为没有可以应用不等式的节点。
您可以解决此行为并使用如下表达式获得您想要的结果:
From the XPath spec:
This means that if the node-set is empty (as in your cases C and D), the result of the boolean expression will be false, since there is no node to which the inequality can apply.
You can work around this behaviour and get the result you want using an expression like: