有没有办法使用xsl模板合并列表中的多值索引?
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了有没有办法使用xsl模板合并列表中的多值索引?相关的知识,希望对你有一定的参考价值。
我有xml如下。
<tns:narrative2List>
<tns:narrative2 index="1">John Doe</tns:narrative2>
<tns:narrative2 index="2">Badi Salah</tns:narrative2>
<tns:narrative2 index="3">Gabriel Jok Riak</tns:narrative2>
</tns:narrative2List>
我需要合并tns:叙述2名称ad我的输出应该是“John Doe Badi Salah Gabriel jok Riak”
使用xsl模板。
我是xslt编程的新手。
答案
Code
<xsl:template match="/tns:Flow1/tns:narrative2List">
<narrative>
<xsl:for-each select="//tns:narrative2">
<xsl:value-of select="."/>
<xsl:text> </xsl:text>
</xsl:for-each>
</narrative>
</xsl:template>
以上是关于有没有办法使用xsl模板合并列表中的多值索引?的主要内容,如果未能解决你的问题,请参考以下文章