使用XSLT和参数从XML获取属性

时间:2014-10-20 12:39:23

标签: xml function xslt

我做了这个xslt,它从XML获取一个值,我有参数,我可以发送给每个我得到我需要的,它没有问题,我的每个做一个比较,如果值匹配我的参数然后就完成了。

有人知道这是不是一个好方法吗?我告诉你,因为我是XSLT的新手,而且我认为这可能会毫无问题。我想知道在编码和速度方面,函数是否是更好的解决方案。

干杯!

XSLT:

<?xml version="1.0"?>
<xsl:stylesheet version="2.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:x="TransactionDataOfRequest">
  <xsl:output method="text" indent="no"/>
  <xsl:output omit-xml-declaration="yes" encoding="UTF-8"/>
  <xsl:strip-space elements="*"/>

  <xsl:template match="/">
    <xsl:param name="param1" select="'ADM_1'"/>
    <xsl:param name="param2" select="'ADM_2'"/>
    <xsl:for-each select="//x:form/x:add">
      <xsl:if test="@name=$param1">
        Question1=<xsl:value-of select="."/>
      </xsl:if>
    </xsl:for-each>

    <xsl:for-each select="//x:form/x:add">
      <xsl:if test="@name=$param2">
        <xsl:variable name="test">
          <xsl:value-of select="."/>
        </xsl:variable>
        Question2=<xsl:copy-of select="$test" />
      </xsl:if>
    </xsl:for-each>
  </xsl:template>
</xsl:stylesheet>

XML:

<?xml version="1.0" encoding="iso-8859-1"?>
<transaction xmlns="TransactionDataOfRequest" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <success>true</success>
  <code>0</code>
  <value>
    <form>
      <add name="ADM_1" title="Question 1" type="String" isList="false">No</add>
      <add name="ADM_2" title="Question 2" type="String" isList="false">Yes</add>
    </form>
  </value>
</transaction>

1 个答案:

答案 0 :(得分:1)

假设您要打印出所有问题和答案,您可以使用简单的应用模板来执行此操作:

<?xml version="1.0"?>
<xsl:stylesheet version="2.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:x="TransactionDataOfRequest">
    <xsl:output method="text" indent="no"/>
    <xsl:output omit-xml-declaration="yes" encoding="UTF-8"/>
    <xsl:strip-space elements="*"/>

    <xsl:template match="/">
        <xsl:apply-templates select="//x:form/x:add"></xsl:apply-templates>
    </xsl:template>

    <xsl:template match="x:add">
        <xsl:value-of select="@title"/>=<xsl:value-of select="."/>
        <xsl:text>&#xa;</xsl:text>
    </xsl:template>

</xsl:stylesheet> 

修改

你可以强制执行此操作,并且仍然会干这个:我猜:

<?xml version="1.0"?>
<xsl:stylesheet version="2.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:x="TransactionDataOfRequest">
    <xsl:output method="text" indent="no"/>
    <xsl:output omit-xml-declaration="yes" encoding="UTF-8"/>
    <xsl:strip-space elements="*"/>

    <xsl:template match="/">
        <xsl:call-template name="processQuestion">
            <xsl:with-param name="name" select="'ADM_1'"></xsl:with-param>
        </xsl:call-template>
        <xsl:call-template name="processQuestion">
            <xsl:with-param name="name" select="'ADM_2'"></xsl:with-param>
        </xsl:call-template>
    </xsl:template>

    <xsl:template name="processQuestion">
        <xsl:param name="name"></xsl:param>
        <xsl:apply-templates select="//x:form/x:add[@name=$name]" mode="process" />
    </xsl:template>

    <xsl:template match="x:add" mode="process">
        <xsl:value-of select="@title"/>=<xsl:value-of select="."/>
        <xsl:text>&#xa;</xsl:text>
    </xsl:template>
</xsl:stylesheet>