我需要使用xml以下列格式表示某些數據。在xml中表示嵌套數據的最佳方式
root-> col1-item1 -> col2-item1 -> col3-item1 -> col3-item2 -> col3-item3 -> col2-item2 -> col3-item1 -> col3-item2 -> col1-item2 -> col2-item1 -> col3-item1
我見過有關這種實現的帖子,但我仍然對實現這一點的最佳方式感到困惑。 以下哪種方式應該用來表示這些數據?還有其他更好的方法嗎?
1方法:
<column1items>
<col1-item text="col1-1st item">
<col2-item> col2 - 1
<col3-item> col3 - 1</col3-item>
<col3-item> col3 - 2</col3-item>
<col3-item> col3 - 3</col3-item>
<col3-item> col3 - 4</col3-item>
</col2-item>
</col1-item>
</column1items>
第二個方法:
<column1items>
<col1-item>
<text> col1-1st item </text>
<col2-items>
<col2-item>
<text> col2 - 1 </text>
<col3-items>
<col3-item> <text> col3 - 1 </text> </col3-item>
<col3-item> <text> col3 - 2 </text> </col3-item>
<col3-item> <text> col3 - 3 </text> </col3-item>
<col3-item> <text> col3 - 4 </text> </col3-item>
</col3-items>
</col2-item>
</col2-items>
</col1-item>
</column1items>
這裏的問題是:可以將文本有屬性(格式(粗體,斜體,花哨的字體) – Benoit 2011-12-22 13:50:18
@Benoit不,它只是一個普通的文本同樣的解決方案應該是易於閱讀 – Nilesh 2011-12-22 13:54:27