1

当我申请到 xml 文件时,我有 xsl 文件。当我在 Internet explorer 中查看它时,我得到了一个错误。

Expected token ']' found 'NAME'. threshold[substring-before(normalize-space(), ' ')-->castable <--as xs:integer]

这是我的 xsl 文件。

<xsl:template match="threshold[substring-before(normalize-space(), ' ')castable as xs:integer]">
<xsl:variable name="vNorm" select = "translate(normalize-space(), '%', '')"/>
<xsl:variable name="vAtUnit" select = "substring-after($vNorm, ' ')"/>
<xsl:variable name="vUnit" select ="replace($vAtUnit, '([^0123456789]+)(\d*)', '$1')"/>
<xsl:variable name="vLastPart" as="xs:string" select ="substring-after($vAtUnit, $vUnit)"/>
<xsl:variable name="vNum" select="concat($vLastPart, '100'[not($vLastPart)])"/>
    <threshold>
        <t-r-value><xsl:value-of select="substring-before(., ' ')"/></t-r-value>
        <unit><xsl:value-of select="normalize-space($vUnit)"/></unit>
        <samplepct><xsl:value-of select="$vNum"/></samplepct>
    </threshold>
    <xsl:call-template name="tested"></xsl:call-template>
</xsl:template>
<xsl:template name="tested">
<xsl:for-each select="../following-sibling::interval-repeats[1]/ repeat[ count(current()/preceding-sibling::threshold) + 1]" >
<xsl:variable name="vNormrep" select = "translate(normalize-space(), '%', '')"/>
<xsl:variable name="vAtUnitrep" select = "substring-after($vNormrep, ' ')"/>
<xsl:variable name="vUnitrep" select ="replace($vAtUnitrep, '([^0123456789]+)(\d*)', '$1')"/>
<xsl:variable name="vLastPart" as="xs:string" select ="substring-after($vAtUnitrep, $vUnitrep)"/>
<xsl:variable name="vNumrep" select="concat($vLastPart, '100'[not($vLastPart)])"/>
    <repeat>
        <t-r-value><xsl:value-of select="substring-before(., ' ')"/></t-r-value>
        <unit><xsl:value-of select="normalize-space($vUnitrep)"/></unit>
        <samplepct><xsl:value-of select="$vNumrep"/></samplepct>
    </repeat>
</xsl:for-each>

任何人都可以在这里帮助我吗?

在此先感谢 Karthic

4

2 回答 2

2

浏览器只支持 XSLT 1.0 和一些 EXSLT 扩展,如果你想使用 XSLT 2.0,你需要使用像 Saxon 9、AltovaXML 或 XmlPrime 这样的 XSLT 2.0 处理器。如果您想使用 XSLT 2.0 客户端,您可以检查 Saxon CE http://www.saxonica.com/ce/download.xml是否是一个选项。

[编辑] 至于尝试在 XSLT 1.0 中实现整数检查,您可以尝试

<xsl:template match="threshold[not(translate(substring-before(normalize-space(), ' '), '0123456789', ''))]">

该检查删除任何数字,然后检查结果是否为空字符串,这可能足以检查整数

于 2012-08-30T10:07:43.380 回答
1

验证字符串是否可转换为整数的一个简短 XPath 表达式是

$x = floor($x)

正如在另一个答案中已经指出的那样,主要的五种浏览器都不支持 XSLT 2.0。目前在浏览器中使用 XSLT 2.0 的方法由Saxon CE提供。

于 2012-08-30T12:52:41.057 回答