0

下面是我原来的 XSL 模板。

<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
  xmlns:n="http://schemas.xmlsoap.org/soap/envelope/"
  xmlns:ns1="http://webservice_product/helloworld"
  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">

<xsl:template match="@* | node()">
  <xsl:copy>
    <xsl:apply-templates select="@* | node()"/>
  </xsl:copy>
</xsl:template>

<xsl:template match="ns1:sayHello">
  <ns1:sayHello xsi:type="ns698:Product" xmlns:ns698="urn:objects.prodcuts.com">
    <xsl:apply-templates select="@* | node()"/>
  </ns1:sayHello>
</xsl:template>

</xsl:stylesheet>

在上面的 xsl 中,我想参数化 xsi:type="ns698:Product" 值。如下图——

<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
  xmlns:n="http://schemas.xmlsoap.org/soap/envelope/"
  xmlns:ns1="http://webservice_product/helloworld"
  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">

<xsl:variable name="name" select='"Product"' />

<xsl:template match="@* | node()">
  <xsl:copy>
    <xsl:apply-templates select="@* | node()"/>
  </xsl:copy>
</xsl:template>

<xsl:template match="ns1:sayHello">
  <ns1:sayHello xsi:type="ns698:$name" xmlns:ns698="urn:objects.prodcuts.com">
    <xsl:apply-templates select="@* | node()"/>
  </ns1:sayHello>
</xsl:template>

</xsl:stylesheet>

但这不起作用。我很努力。

4

1 回答 1

0

尝试:

<ns1:sayHello xsi:type="ns698:{$name}" xmlns:ns698="urn:objects.prodcuts.com">

或者

<xsl:variable name="name" select='"ns698:Product"' />

..

<ns1:sayHello xsi:type="{$name}" xmlns:ns698="urn:objects.prodcuts.com">
于 2013-06-18T06:22:14.733 回答