作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
调用模板有问题,出现错误:
Cannot find a template named getIndex
语法似乎是正确的。我尝试使用 apply-template
一切正常。我不知道为什么会出现此错误。
这是示例 XSLT 文件:
<?xml version="1.0" encoding="utf-8"?>
<!-- Created with Liquid Studio 2019 (https://www.liquid-technologies.com) -->
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="xml" indent="yes"/>
<xsl:template match="/">
<xsl:apply-templates/>
</xsl:template>
<xsl:template match="Document">
<xsl:element name="Document">
<xsl:apply-templates/>
</xsl:element>
</xsl:template>
<xsl:template match="Produkt">
<xsl:element name="Produkt">
<xsl:element name="Index">
<xsl:call-template name="getIndex"/>
</xsl:element>
</xsl:element>
</xsl:template>
<xsl:template match="getIndex">
<xsl:value-of select="Index"/>
</xsl:template>
</xsl:stylesheet>
最佳答案
改变
<xsl:template match="getIndex">
到
<xsl:template name="getIndex">
^^^^
一般来说:
<xsl:template match="
图案 ">
对于 xsl:apply-templates
.<xsl:template name="
姓名 ">
对于 xsl:call-template
.关于xml - XSLT 错误 : Cannot find a template named X,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55299468/
我是一名优秀的程序员,十分优秀!