我有这样的XML文件。 我如何使用这个单独的XML文件分割成多个单独的页与它们各自的节点,并通过它的链接导航? 有人可以给我一个起点?
XML文件
<Colors>
<Color>
<description>
<p>This page is red.</p>
</description>
</Color>
<Color>
<description>
<p>This page is blue.</p>
</description>
</Color>
<Color>
<description>
<p>This page is green.</p>
</description>
</Color>
<Colors>
输出:
<html>
<head></head>
<body>
This page is red.
</body>
</html>
<html>
<head></head>
<body>
This page is blue.
</body>
</html>
<html>
<head></head>
<body>
This page is green.
</body>
</html>