在
XML中,如何表示列表?
原文链接:https://www.f2er.com/xml/292485.html使用封闭列表实体:
<person> <firstname>Joe</firstname> <lastname>Bloggs</lastname> <children> <child .../> <child .../> <child .../> <child .../> <child .../> </children> </person>
或者没有:
<person> <firstname>Joe</firstname> <lastname>Bloggs</lastname> <child .../> <child .../> <child .../> <child .../> <child .../> </person>