我有一个 xml 文件,比方说:
<parent>
<notimportant1>
</notimportant1>.
<notimportant2>
</notimportant2>.
....
<child>
<grandchild>.
....
</grandchild>
<grandchild>
....
</grandchild>.
....
<notimportant3>
</notimportant3>
</child>
<parent>
还有xsl文件:
<xsl:template match="parent">.
...
...
<xsl:for-each select="child">.
<xsl:for-each select="grandchild">
...
</xsl:for-each>.
</xsl:for-each>
....
</xsl:template>
现在,我必须创建新xsl
文件,该文件只能导入/包含这个现有的xsl
.
是否可以覆盖这个 for-each 行为,以便我只能显示一些预定义的文本/链接来代替它?
我无法修改现有的 xsl,并且我想使用模板中的所有其他内容 - 不能只定义具有更高优先级的新 xsl。