我有以下 XML 有效负载:<?xml version="1.0" encoding="UTF-8" ?><product>
<discount class="standard">
<id>123</id>
<beginDate>20181205</beginDate>
<endDate>20181225</endDate>
</discount>
<account>12345</account></product>元素上的属性可以具有以下值:classdiscountstandardspecialcustomsale我正在尝试编写一个 XPath 表达式,如果 具有这些值之一的 elemtn,则该表达式将匹配。我最好的尝试:product/discountclass/product/discount[@class]/[@class = 'standard' or @class = 'special' or @class = 'customer' or @class = 'sale']生成以下错误:InvalidXPathExpression: Invalid xpath: /product/discount[@class]/[@class = 'standard' or @class = 'special' or @class = 'customer' or @class = 'sale']. Reason: javax.xml.xpath.XPathExpressionException: javax.xml.transform.TransformerException: A location step was expected following the '/' or '//' token.任何想法,我的XPath有什么问题?
2 回答
德玛西亚99
TA贡献1770条经验 获得超3个赞
如错误消息所示,需要后跟一个位置步骤。因此, 不是有效的 xPath 表达式。/
/[@class = 'standard' ...]
相反,请尝试:
/product/discount[@class = 'standard' or @class = 'special' or @class = 'customer' or @class = 'sale']
RISEBY
TA贡献1856条经验 获得超5个赞
只是为了好玩,一个比@jsheeran个更好的XPath 1.0表达式可能是:
/product/discount[@class[.='standard' or .='special' or .='customer' or .='sale']]
如果属性是唯一的标记,并且某些特殊字符(如 )不能是其中的一部分,则可以使用以下 XPath 1.0“item IN 序列”表达式:class 
/product
/discount[
contains(
' standard special customer sale ',
concat(' ',@class,' ')
)
]
添加回答
举报
0/150
提交
取消