0

我有这个 xml 文件:

 <ItemArray>
    <Item>
      <GiftIcon>0</GiftIcon>
      <HitCounter>NoHitCounter</HitCounter>
      <Quantity>1</Quantity>
      <TimeLeft>P9DT17H35M6S</TimeLeft>
      <Title>Table</Title>
    </Item>
    <Item>
      <GiftIcon>0</GiftIcon>
      <HitCounter>NoHitCounter</HitCounter>
      <Quantity>1</Quantity>
      <TimeLeft>PT0S</TimeLeft>
      <Title>Chair</Title>
    </Item>
  </ItemArray>

如果“TimeLeft”不是“PT0S”,我想返回“Title”:

到目前为止,我得到了这个:

itemList = response.getElementsByTagName('Item')
children = itemList[0].childNodes
for child in children :
  if child.tagName == "TimeLeft":
    if child.childNodes[0].nodeValue == "PT0S": 
       print "ping"

但我不知道如何从那里返回“Title”值,根据其他子节点是 true 还是 false 返回子节点值的更优雅的方法是什么?

4

2 回答 2

4

使用xpath

doc.xpath('.//item[timeleft/text()!="PT0S"]/title/text()')

于 2013-01-15T11:23:58.847 回答
2

您可以使用 Python 的 ElementTree API 和简单的列表理解:

import xml.etree.ElementTree as ET

tree = ET.parse('your_xml_file.xml')
root = tree.getroot()

titles = [item.find('Title').text for item in root.findall('Item') if item.find('TimeLeft').text != 'PT0S']

titlesTimeLeft是不是的项目的标题列表PT0S。在我看来,这比基于 XPath 的解决方案(如果您不熟悉 XPath)更容易阅读。

于 2013-01-15T14:22:30.350 回答