我的 XML 字符串是 -
xmlData = """<SMSResponse xmlns="http://example.com" xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
<Cancelled>false</Cancelled>
<MessageID>00000000-0000-0000-0000-000000000000</MessageID>
<Queued>false</Queued>
<SMSError>NoError</SMSError>
<SMSIncomingMessages i:nil="true"/>
<Sent>false</Sent>
<SentDateTime>0001-01-01T00:00:00</SentDateTime>
</SMSResponse>"""
我正在尝试解析并获取标签的值 - Cancelled、MessageId、SMSError 等。我正在使用 python 的Elementtree库。到目前为止,我已经尝试过类似的事情 -
root = ET.fromstring(xmlData)
print root.find('Sent') // gives None
for child in root:
print chil.find('MessageId') // also gives None
虽然,我可以打印标签 -
for child in root:
print child.tag
//child.tag for the tag Cancelled is - {http://example.com}Cancelled
以及它们各自的值 -
for child in root:
print child.text
我如何得到类似的东西 -
print child.Queued // will print false
就像在 PHP 中一样,我们可以使用 root 访问它们 -
$xml = simplexml_load_string($data);
$status = $xml->SMSError;