我有一个包含以下数据的表:
列:级别、类、属性、值
数据:
0、衣服、鞋1、耐克
0、衣服、鞋2、阿迪达斯
0、衣服、鞋3、FILA
0,衣服,帽子,汤姆
1、卫衣、Dash1、红色
1、卫衣、Dash2、蓝色
我想生成一个 xml,其中包含每个级别的数据(迭代级别)。这就是我所期待的:
<Root>
<Level>
<Clothes>
<Shoe1>Nike</Shoe1>
<Shoe2>Adidas</Shoe2>
<Shoe3>FILA</Shoe3>
</Clothes>
<Clothes>
<Hat>Tom</Hat>
</Clothes>
</Level>
<Level>
<Sweatshirt>
<Dash1>Red</Dash1>
<Dash2>Blue</Dash2>
</Sweatshirt>
</Level>
</Root>