0

我尝试使用 lxml.objectify包重新创建以下 XML

<file>
  <customers>
    <customer>
        <phone>
            <type>home</type>
            <number>555-555-5555</number>
        </phone>
        <phone>
            <type>cell</type>
            <number>999-999-9999</number>
        </phone>
        <phone>
            <type>home</type>
            <number>111-111-1111</number>
        </phone>
    </customer>
   </customers>
</file>

我不知道如何多次创建电话元素。基本上,我有以下非工作代码:

    # create phone element 1
    root.customers.customer.phone = ""
    root.customers.customer.phone.type = data_dict['PRIMARY PHONE1']
    root.customers.customer.phone.number = data_dict['PRIMARY PHONE TYPE 1']

    # create phone element 2
    root.customers.customer.phone = ""
    root.customers.customer.phone.type = data_dict['PRIMARY PHONE2']
    root.customers.customer.phone.number = data_dict['PRIMARY PHONE TYPE 2']

    # create phone element 3
    root.customers.customer.phone = ""
    root.customers.customer.phone.type = data_dict['PRIMARY PHONE3']
    root.customers.customer.phone.number = data_dict['PRIMARY PHONE TYPE 3']

当然,这只会在生成的 XML 中输出一段电话信息​​。有没有人有任何想法?

4

2 回答 2

1

您应该创建objectify.Element对象,并将它们添加为root.customers.

例如,插入两个电话号码可以这样完成:

phone = objectify.Element('phone')
phone.type = data_dict['PRIMARY PHONE1']
phone.number = data_dict['PRIMARY PHONE TYPE 1']
root.customers.customer.append(phone)

phone = objectify.Element('phone')
phone.type = data_dict['PRIMARY PHONE2']
phone.number = data_dict['PRIMARY PHONE TYPE 2']
root.customers.customer.append(phone)

如果在将 xml 转换回字符串时在这些元素上获得了不必要的属性,请使用objectify.deannotate(root, xsi_nil=True, cleanup_namespaces=True). 有关. _ _objectify.deannotate

(如果您使用的是旧版本的 lxml,它不包含cleanup_namespaces关键字参数,请改为执行以下操作:

from lxml import etree
# ...
objectify.deannotate(root, xsi_nil=True)
etree.cleanup_namespaces(root)

)

于 2012-09-07T20:15:46.807 回答
1

下面是一些使用objectify E-Factory构造 XML 的示例代码:

from lxml import etree
from lxml import objectify

E = objectify.E

fileElem = E.file(
    E.customers(
        E.customer(
            E.phone(
                E.type('home'),
                E.number('555-555-5555')
            ),
            E.phone(
                E.type('cell'),
                E.number('999-999-9999')
            ),
            E.phone(
                E.type('home'),
                E.number('111-111-1111')
            )
        )
    )
)

print(etree.tostring(fileElem, pretty_print=True))

我在这里对其进行了硬编码,但您可以将其转换为数据循环。这对您的目的有用吗?

于 2012-09-07T20:21:42.437 回答