zoukankan      html  css  js  c++  java
  • Xslt 1.0中使用Array

    XSLT Variable Arrays

    I recently answered a question on a popular programmers forum about how to store and access an array of user-defined variables in a stylesheet and then loop though those variables.  I realized that many developers are not familar with the available techniques for doing this and decided to add an entry in my blog about this topic.

    User-defined variable arrays within stylesheets are not part of the XSLT specification.  The usual way to handle this problem in XSLT 1.0 stylesheets is to define a user-defined top-level element which belongs to a non-null namespace which is different from the XSLT namspace.  These user-defined top-level elements are typically used to store error messages, lookup data, etc.  You can then access these user-defined elements from within your stylesheet by treating the stylesheet as an additional source document and loading it using the document() function with an empty string as the first argument.  An empty string is interpreted to mean the current stylesheet.

    The following stylesheet demonstrates this method.

    <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0"

    xmlns:foo="http://foo.com" exclude-result-prefixes="foo">

     

    <xsl:output method="text" encoding="utf-8"/>

     

    <foo:vars>

    <foo:var name="z1">A</foo:var>

    <foo:var name="z2">B</foo:var>

    <foo:var name="z3">C</foo:var>

    <foo:var name="z4">D</foo:var>

    </foo:vars>

     

    <xsl:template match="/">

    <xsl:for-each select="document('')/xsl:stylesheet/foo:vars/foo:var" >

    <xsl:value-of select="." />

    <xsl:if test="position() != last()">

    <xsl:text>,</xsl:text>

    </xsl:if>

    </xsl:for-each>

    <xsl:text>

    </xsl:text>

    </xsl:template>

     

    </xsl:stylesheet>

    If you are using XSLT 2.0, this method is no longer needed as simpler and more elegant methods are available to us.  For example, you can store and directly access the variables using the <xsl:variable> element as shown in the following stylesheet.

    <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="2.0" >

    <xsl:output method="text" encoding="utf-8"/>

     

    <xsl:variable name="z1" select="'A'" />

    <xsl:variable name="z2" select="'B'" />

    <xsl:variable name="z3" select="'C'" />

    <xsl:variable name="z4" select="'D'" />

    <xsl:variable name="vars" select="$z1, $z2, $z3, $z4" />

     

    <xsl:template match="/">

    <xsl:for-each select="$vars" >

    <xsl:value-of select="." />

    <xsl:if test="position() != last()">

    <xsl:text>,</xsl:text>

    </xsl:if>

    </xsl:for-each>

    <xsl:text>

    </xsl:text>

    </xsl:template>

     

    </xsl:stylesheet>

    Another way to store and access this data in a XSLT 2.0 stylesheet is to use a global variable definition as shown below.

    <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="2.0" >

     

    <xsl:output method="text" encoding="utf-8"/>

     

    <xsl:variable name="vars">

    <var name="z1">A</var>

    <var name="z2">B</var>

    <var name="z3">C</var>

    <var name="z4">D</var>

    </xsl:variable>

     

    <xsl:template match="/">

    <xsl:for-each select="$vars/var" >

    <xsl:value-of select="." />

    <xsl:if test="position() != last()">

    <xsl:text>,</xsl:text>

    </xsl:if>

    </xsl:for-each>

    <xsl:text>

    </xsl:text>

    </xsl:template>

     

    </xsl:stylesheet>

    All three stylesheets output the same data.



    Read more: http://blog.fpmurphy.com/2008/12/xslt-variable-arrays.html#ixzz4MkwhVn00

  • 相关阅读:
    英语中的合成词
    超声诊断装置的质量评价
    图像处理的数学方法zz
    超声射频信号的产生(RF Signal)
    黄帝内经——春夏秋冬养生之道zz
    超声仿真软件Field II的使用
    水木上关于超声图像增强的讨论
    TWaver HTML5 + Node.js + express + socket.io + redis(五)
    如何用Swing去绘制电力系统图
    TWaver在FTTX设备网管系统中的应用
  • 原文地址:https://www.cnblogs.com/time-is-life/p/5949212.html
Copyright © 2011-2022 走看看