你能根据输出格式在 xslt 中进行分支吗?
我正在创建一个 xlst 脚本,想知道是否可以根据输出格式分支某些代码?
在我的 xlst 文件之上,我有这个:
<xsl:output
version="4.0"
method="html"
indent="no"
encoding="UTF-8"
use-character-maps="spaces"/>
所以我想有一些东西可以查询某种全局来执行此操作:
<xsl:if test='global_output is html'>
do this
</xsl:if>
谢谢!
I'm creating an xlst script and was wondering if it is possible to branch some code depending on the output format?
On top of my xlst file I have this:
<xsl:output
version="4.0"
method="html"
indent="no"
encoding="UTF-8"
use-character-maps="spaces"/>
So I suppose there is something out there to inquire some sort of global to do this:
<xsl:if test='global_output is html'>
do this
</xsl:if>
Thank you!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果要创建样式表的变体以在不同情况下使用,请勿将 if/then/else 代码放入模板规则内以在运行时测试条件。这样你就会得到意大利面条。创建两个样式表模块 to-html.xsl 和 to-xml.xsl,并导入包含共享代码的模块 common.xsl。当 common.xsl 模块需要调用两种情况之间不同的功能时,它可以回调导入模块。两种情况之间的区别之一当然是 xsl:output 声明本身。
If you want to create variants of a stylesheet for use in different situations, don't put if/then/else code inside the template rules to test the condition at run-time. That way you end up with spaghetti. Create two stylesheet modules to-html.xsl and to-xml.xsl, and have both import a module common.xsl that contains the shared code. The common.xsl module can call back to the importing module when it needs to invoke functionality that varies between the two cases. One of the differences between the two cases is of course the xsl:output declaration itself.
在 1.0 中可以使用:
在 XSLT 2.0 中可能有一种更经典的方法。
In 1.0 one can use:
May be there is a classier way to do it in XSLT 2.0.