递归xsl转换
我有一个以下格式的 xml 文档,想要使用 xsl 模板对其进行转换。
我是 xsl 转换的初学者,我只需要知道如何通过树递归,但整个问题的解决方案会很好。
这是 xml 文档:
<?xml version="1.0" encoding="UTF-8" ?>
<nodes xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<node>
<type>Parent</type>
<name>.test</name>
<node>
<type>parent</type>
<name>.test.root</name>
<node>
<type>Parent</type>
<name>.test.root.group</name>
<node>
<type>int</type>
<name>.test.root.group.a</name>
<value>0</value>
</node>
<node>
<type>char</type>
<name>.test.root.group.b</name>
<value>-</value>
</node>
</node>
</node>
<node>
<type>parent</type>
<name>.test.versions</name>
<node>
<type>utf-8</type>
<name>.test.versions.version</name>
<value>alpha</value>
</node>
<node>
<type>utf-8</type>
<name>.test.version.extra</name>
<value>16.5</value>
</node>
</node>
</node>
</nodes>
这就是我希望生成的 html 的样子:
.---------------------------------------------. | tree | value | type | |------------------------+-----------+--------| | '- test | | parent | | |- root | | parent | | | '- group | | parent | | | |- a | 0 | int | | | '- b | - | char | | '- versions | | parent | | |- version | "alpha" | utf-8 | | '- extra | 16.5 | utf-8 | '---------------------------------------------'
I have a xml document on the following format and want to transform it using a xsl template.
I'm a beginner at xsl transformations and I only need to know how to recurse trough the tree but a solution to the whole problem would be nice.
This is the xml document:
<?xml version="1.0" encoding="UTF-8" ?>
<nodes xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<node>
<type>Parent</type>
<name>.test</name>
<node>
<type>parent</type>
<name>.test.root</name>
<node>
<type>Parent</type>
<name>.test.root.group</name>
<node>
<type>int</type>
<name>.test.root.group.a</name>
<value>0</value>
</node>
<node>
<type>char</type>
<name>.test.root.group.b</name>
<value>-</value>
</node>
</node>
</node>
<node>
<type>parent</type>
<name>.test.versions</name>
<node>
<type>utf-8</type>
<name>.test.versions.version</name>
<value>alpha</value>
</node>
<node>
<type>utf-8</type>
<name>.test.version.extra</name>
<value>16.5</value>
</node>
</node>
</node>
</nodes>
And this is how I would like the produced html to look like:
.---------------------------------------------. | tree | value | type | |------------------------+-----------+--------| | '- test | | parent | | |- root | | parent | | | '- group | | parent | | | |- a | 0 | int | | | '- b | - | char | | '- versions | | parent | | |- version | "alpha" | utf-8 | | '- extra | 16.5 | utf-8 | '---------------------------------------------'
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这个 XSLT 将生成一棵像您想要的树:
将数据添加到接下来的两列非常简单,请尝试自己完成。
This XSLT will generate a tree like you want:
Adding data to next two columns is pretty simple, try to do it by yourself.