加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 百科 > 正文

xml – 基于子值的XPath选择

发布时间:2020-12-15 23:58:11 所属栏目:百科 来源:网络整理
导读:这是一些xml: books book authorTom/author genres genreScience/genre genreRomance/genre /genres /book book authorMike/author genres genrePolitics/genre genreRomance/genre /genres /book/books 如何定义一个xpath,以便拉出所有浪漫书籍?或者也许
这是一些xml:
<books>
    <book>
        <author>Tom</author>
        <genres>
            <genre>Science</genre>
            <genre>Romance</genre>
        </genres>
    </book>
    <book>
        <author>Mike</author>
        <genres>
            <genre>Politics</genre>
            <genre>Romance</genre>
        </genres>
    </book>
</books>

如何定义一个xpath,以便拉出所有浪漫书籍?或者也许所有的浪漫和政治书籍?

你可以分别使用//book[./genres/genre =’Romance’]和//book[./genres/genre =’Romance’和./genres/genre =’Politics’]

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读