尝试将xslt文件/模板导入另一个xslt文件并传递param。我在这做错了什么

时间:2013-01-10 18:52:19

标签: xml xslt

我正在使用XSLT 2.0。这是我的第一个文件。

<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="2.0" xmlns:xalan="http://xml.apache.org/xslt" xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:IAAXML="http://www.ibm.com/industries/financialservices/IAAXML">
    <xsl:import href="address.xsl"/>
    <xsl:template match="/">
        <Claim>
            <Contact>
                    <xsl:variable name="contact" select="//IAAXML:Invoice/IAAXML:roleInFinancialStatement/IAAXML:party[@xsi:type='IAAXML:Organization']/IAAXML:subOrganisation"/>
                    <xsl:call-template name="address">
                        <!-- <xsl:param name="contactParam" select="$contact"/> -->
                        <xsl:with-param name="contactParam" select="$contact"/>
                    </xsl:call-template>
            </Contact>
        </Claim>
    </xsl:template>
</xsl:stylesheet>

这是我的第二个档案。

<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="2.0" xmlns:xalan="http://xml.apache.org/xslt" xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:IAAXML="http://www.ibm.com/industries/financialservices/IAAXML">
    <xsl:param name="contactParam" select="'default'"/>
    <!-- <xsl:param name="address" select="'default'"/> -->
    <xsl:template match="/" name="address" >
        <Address>
            <xsl:variable name="address" select="$contactParam[IAAXML:type/IAAXML:name='Department']/IAAXML:partyContactPreferences/IAAXML:contactPoints" />
            <AddressLine1>
                <xsl:value-of select="$address/IAAXML:addressLines" />
            </AddressLine1>
            <City>
                <xsl:value-of select="$address/IAAXML:city" />
            </City>
            <State>
                <xsl:value-of select="$address/IAAXML:state" />
            </State>
        </Address>
    </xsl:template>
</xsl:stylesheet>

我收到以下错误:IXJXE0781E:[ERR 0700] [ERR XTSE0680]将不是隧道参数'contactParam'的参数传递给没有模板参数的模板是一个静态错误相同的扩展QName。 SystemID:file:/ C:/p4/xslPlay/partyTx/test.xsl;行#:10;第62栏

我做错了什么?如何完成将参数传递给其他文件?感谢。

1 个答案:

答案 0 :(得分:1)

在这种情况下,你的模板不应该有一个名为contactParam的参数吗?:

<xsl:template match="/" name="address" >
    <xsl:param name="contactParam" select="'default'"/>

我感觉这就是错误。