我是靠谱客的博主 受伤烧鹅,最近开发中收集的这篇文章主要介绍xsl 遍历模板,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

有如下的XML结构:

<response name="test2">
                        <Status>
                           <StatusCode>101</StatusCode>
                           <Message>no</Message>
                           <test>
                             <a1>a</a1>
                             <a2>b</a2>
                           </test>
                           <Status>Complete</Status>
                        </Status>
                        <UniqueID>testplayer</UniqueID>
                        <Balance>12.0</Balance>
                        <Currency>GBP</Currency>
                        <Country>GB</Country>
                        <StakeLimit>100</StakeLimit>
                        <LossLimit>5</LossLimit>
                        <SessionTimeout>30</SessionTimeout>
</response>

 

现需要把这个response复制出来,并且把每个element前加一个namespace前缀,如ns, 则有:

 

<xsl:template name="copyResponse" match="/*">
    <xsl:param name="childNodes" select="*"/>
   <xsl:for-each select="$childNodes">
   <xsl:choose>
  <xsl:when test="*">
   <xsl:element name="ns:{name()}">
    <xsl:call-template name="copyResponse">
     <xsl:with-param name="childNodes" select="child::*"/>
   </xsl:call-template>
   </xsl:element>
  </xsl:when>
  <xsl:otherwise>
     <xsl:element name="ns:{name()}"><xsl:value-of select="."/></xsl:element>
  </xsl:otherwise>
  </xsl:choose>
 </xsl:for-each>
  </xsl:template>

主要思想:递归。

最后

以上就是受伤烧鹅为你收集整理的xsl 遍历模板的全部内容,希望文章能够帮你解决xsl 遍历模板所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(76)

评论列表共有 0 条评论

立即
投稿
返回
顶部