如何区分 XSL 中的两个模板?
这就是我在 XSL 中尝试做的事情:
<xsl:apply-templates select="document('a.xml')//row"/>
<xsl:apply-templates select="document('b.xml')//row"/>
<xsl:template match="row">
<!-- for document a.xml -->
</xsl:template>
<xsl:template match="row">
<!-- for document b.xml -->
</xsl:template>
由于显而易见的原因,它不能按现在的方式工作。如何区分这两个模板?文档a.xml
和b.xml
在XML 结构方面完全相同。
This is what I'm trying to do in XSL:
<xsl:apply-templates select="document('a.xml')//row"/>
<xsl:apply-templates select="document('b.xml')//row"/>
<xsl:template match="row">
<!-- for document a.xml -->
</xsl:template>
<xsl:template match="row">
<!-- for document b.xml -->
</xsl:template>
Doesn't work as is now, for obvious reasons. How can I differentiate these two templates? Document a.xml
and b.xml
are absolutely identical in terms of XML structure.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用
mode
属性。Use the
mode
attribute.您可以按照建议使用 mode 属性,但这确实意味着该决定部分是在 xsl:apply-templates 级别做出的,部分是由模板规则本身做出的。如果您希望控件纯粹在模板规则中,则可以使用匹配模式
(如果您仍在使用 XSLT 1.0,请将“
A is B
”替换为“generate-id” (A) = 生成 ID(B)
")You can use the mode attribute as suggested, though this does mean that the decision is made partly at the xsl:apply-templates level and partly by the template rule itself. If you want the control to be purely in the template rule, you could use the match patterns
(If you're still using XSLT 1.0, replace "
A is B
" by "generate-id(A) = generate-id(B)
")