XSLT:使用Parameter调用模板并连接多个值

时间:2014-10-16 12:02:25

标签: xml templates xslt parameters concatenation

我的部分xml代码如下:

<PaymentInstruction>
                <ID> 1</ID>
                <Code listID="1C">POST</Code>
                <CodeDescription languageCode="RU">PostType</CodeDescription>
                <Note languageCode="RU">01</Note>
            </PaymentInstruction>
            <PaymentInstruction>
                <ID> 2</ID>
                <Code listID="1C">PAYTYPE</Code>
                <CodeDescription languageCode="RU">PayType</CodeDescription>
                <Note languageCode="RU">Electronic</Note>
            </PaymentInstruction>
            <PaymentInstruction>
                <ID> 3</ID>
                <Code listID="1C">INN_PAY</Code>
                <CodeDescription languageCode="RU">INNPayer</CodeDescription>
                <Note languageCode="RU">987654321</Note>
            </PaymentInstruction>

在XSLT的某处,我写了类似这样的代码:

<xsl:template match="PaymentInstruction">
        <xsl:param name="value" select="0"/>             
        <xsl:choose>
            <xsl:when test="$value = 'POST'"><xsl:if test="Code = 'POST'">
<xsl:value-of select="Note"></xsl:value-of></xsl:if></xsl:when>
            <xsl:when test="$value = 'PAYTYPE'"><xsl:if test="Code = 'PAYTYPE'">
<xsl:value-of select="Note"></xsl:value-of></xsl:if></xsl:when>
            <xsl:when test="$value = 'INN_PAY'"><xsl:if test="Code = 'INN_PAY'">
<xsl:value-of select="Note"></xsl:value-of></xsl:if></xsl:when> 
        </xsl:choose>        
</xsl:template>        

+

Payer=<xsl:value-of select="concat('INN ',PaymentInstruction/Code='INN_PAY', '\',PaymentInstruction/Code='PAYTYPE', ' ', $Payer)"/>    

最后我得到以下输出:

Payer=INN true\false Payer_Full_Name    

但我想输出以下内容:

Payer=INN 987654321\Electronic Payer_Full_Name    

我该怎么做?谢谢!

2 个答案:

答案 0 :(得分:0)

试试这个,

<xsl:value-of select="concat('INN ', if(PaymentInstruction/Code='INN_PAY') then PaymentInstruction[Code='INN_PAY']/Note else 'SOME OTHER', )"/>

答案 1 :(得分:0)

公平地说,您似乎必须将您的“付款人”组成代码从您在此处发布的集合中移动一级以上。

<xsl:template match="/">
        <xsl:variable name="Payer">Payer_Full_Name</xsl:variable>
        <xsl:variable name="Innpay"><xsl:value-of select="//PaymentInstruction/Code[.='INN_PAY']/../Note"></xsl:value-of></xsl:variable>
        <xsl:variable name="Paytype"><xsl:value-of select="//PaymentInstruction/Code[.='PAYTYPE']/../Note"></xsl:value-of></xsl:variable>
    <xsl:element name="Output">
        <xsl:attribute name="result">Payer=<xsl:value-of select="concat('INN ', $Innpay, '\', $Paytype, ' ', $Payer)"/></xsl:attribute>
    </xsl:element>
</xsl:template>

希望这是你正在寻找的东西:

<Output result="Payer=INN 987654321\Electronic Payer_Full_Name" ... />

P.S。随意将“// PaymentInstruction”调整为您的代码的实际级别 - 您应该在收集级别的唯一规则,而不是个人&lt; PaymentInstruction&gt;