xslt Ant任务没有向样式表传递参数

  • 本文关键字:参数 样式 Ant 任务 xslt ant
  • 更新时间 :
  • 英文 :


我有一个这样的样式表

<?xml version="1.0" encoding="utf-8"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
    <xsl:param name="testParam"/>
    <xsl:template match="@*|node()">
        <xsl:copy>
            <xsl:apply-templates select="@*|node()" />
        </xsl:copy>
    </xsl:template>
    <xsl:template match="resources/integer[@name='LOG_LEVEL']/text()">
        <xsl:value-of select="$testParam"/>
    </xsl:template>
</xsl:stylesheet>

我有一个像这样的输入xml:

<?xml version="1.0" encoding="utf-8"?>
<resources>
    <integer name="LOG_LEVEL">3</integer>
    <string name="app_name">Test Application</string>
</resources>

但是当我尝试在ant中调用xslt转换时使用:

<xslt in="in.xml" out="out.xml" style="style_above.xsl">
    <outputproperty name="method" value="xml"/>
    <outputproperty name="encoding" value="UTF-8"/>
    <outputproperty name="indent" value="yes"/>
    <param name="testParam" expression="test"/>
</xslt>

得到如下结果:

<?xml version="1.0" encoding="UTF-8"?>
<resources>
    <integer name="LOG_LEVEL"/>
    <string name="app_name">Test Application</string>
</resources>

它似乎没有将xslt参数更改为我在ant target

中指定的值

是的,我发现问题是另一回事。刚要更新的时候已经太迟了。我在一个宏中定义了xslt任务,并且有一个可选元素也命名为param,这就是罪魁祸首。由于

相关内容

  • 没有找到相关文章

最新更新