你能根据输出格式在 xslt 中进行分支吗?

发布于 2024-10-18 13:19:16 字数 357 浏览 2 评论 0原文

我正在创建一个 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

你的笑 2024-10-25 13:19:16

如果要创建样式表的变体以在不同情况下使用,请勿将 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.

不再见 2024-10-25 13:19:16

在 1.0 中可以使用:

<xsl:stylesheet version="1.0"
    xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
    <xsl:output version="4.0"
    method="html" indent="no" encoding="UTF-8"/>
    <xsl:template match="/*">
        <xsl:if test="document('')/*/xsl:output/@method = 'html'">
            Output method is HTML
        </xsl:if>
        <xsl:if test="document('')/*/xsl:output/@method = 'xml'">
            Output method is XML
        </xsl:if>
    </xsl:template>
</xsl:stylesheet>

在 XSLT 2.0 中可能有一种更经典的方法。

In 1.0 one can use:

<xsl:stylesheet version="1.0"
    xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
    <xsl:output version="4.0"
    method="html" indent="no" encoding="UTF-8"/>
    <xsl:template match="/*">
        <xsl:if test="document('')/*/xsl:output/@method = 'html'">
            Output method is HTML
        </xsl:if>
        <xsl:if test="document('')/*/xsl:output/@method = 'xml'">
            Output method is XML
        </xsl:if>
    </xsl:template>
</xsl:stylesheet>

May be there is a classier way to do it in XSLT 2.0.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文