我正在使用 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 列
我究竟做错了什么?如何完成将参数传递给另一个文件?谢谢。