orderedContent PyXB返回空列表

时间:2018-01-11 12:08:22

标签: python xml python-3.x python-2.7 pyxb

我正在尝试使用pyxb库解析简单和复杂类型的XML文件。以下是XML结构:

                                           

            </Requirement>
            <Section name="Electrical Characteristics">                     
            </Section>
        </Section>
    </Source>
</Requirements>

在阅读完pyxb后,我按照以下顺序获取XML,其中需求和部分的顺序发生了变化。

                          

            <Section name="Electrical Characteristics">                     
            </Section>

            </Requirement>
        </Section>
    </Source>
</Requirements>

我编写了一个脚本,将XML转储到pyxb对象,我使用orderedContent()以下列方式保存顺序。

ordered_instance = instance.orderedContent()

我在ordered_instance变量中找到空列表。

0 个答案:

没有答案