我希望选择状态为" Live"
的每个活动我在Drupal的XPath XML解析器中使用它,并具有Context基本查询和xpath查询字段。
(Context =这是基本查询,所有其他查询都将在此上下文中运行。)
我目前有:
背景:./event[./status = 'Live']
标题:title
说明:description
<events>
<event>
<title>Number 1</title>
<status>Draft</status>
<description></description>
</event>
<event>
<title>Number 1</title>
<status>Live</status>
<description></description>
</event>
</events>
答案 0 :(得分:3)
我不知道drupal但这个XPath在XPath测试中对我很好:
./events/event[ status = 'Live']