我有这个 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>