2

我正在使用某个框架,主要开发人员正在考虑从基于原生 PHP 的模板彻底更改为 XSLT 模板。

我担心这不可行,因为在我们的网站上,我们通常有非常复杂的模板逻辑。

对于这样简单的事情:

    if ( $something ) { ?>
        <p><?php if ( $another ) { ?>Lorem Ipsum<?php } else { ?>Dolor amet<?php } ?>.</p>
    <?php } else { ?>
        <p><?php if ( $another ) { ?>Lorem Ipsum<?php } else { ?>Dolor amet<?php } ?>.</p>
    <?php } ?>

等效的 XSLT 将是:

    <xsl:choose>
        <xsl:when test="blah">
            <xsl:choose>
                <xsl:when test="another">
                    <p>Lorem Ipsum.</p>
                </xsl:when>
                <xsl:otherwise>
                    <p>Dolor amet.</p>
                </xsl:otherwise>
        </xsl:when>
        <xsl:otherwise>
                <xsl:when test="another">
                    <p>Lorem Ipsum.</p>
                </xsl:when>
                <xsl:otherwise>
                    <p>Dolor amet.</p>
                </xsl:otherwise>
        </xsl:otherwise>
    </xsl:choose>

这么简单的代码片段,一想到高级场景就吓到我了。

我想知道是否有人经历过类似的模板转换,如果是这样,您是如何应对的?你回去了吗?

4

2 回答 2

6

在 XSLT 1.0 中,您建议的代码可以简化为:

<p>
   <xsl:choose>
        <xsl:when test="blah">
                <xsl:when test="another">Lorem Ipsum.</xsl:when>
                <xsl:otherwise>Dolor amet.</xsl:otherwise>
        </xsl:when>
        <xsl:otherwise>
                <xsl:when test="another">Lorem Ipsum.</xsl:when>
                <xsl:otherwise>Dolor amet.</xsl:otherwise>
        </xsl:otherwise>
    </xsl:choose>
</p>

在 XSLT 2.0 中,它可以进一步简化为:

<p>
  <xsl:value-of select="if (test=blah) 
                        then if (test=another) then 'Lorem ipsum' else 'Dolor amet'
                        then if (test=another) then 'Lorem ipsum' else 'Dolor amet'"/>
</p>

这让我觉得比你的 PHP 原版要好得多。

对于更一般的问题,XSLT 确实有一个陡峭的学习曲线。那些坚持使用并掌握概念的人通常对这种语言非常满意。但也有不少人在到达那一点之前就冷落了,放弃了,因为这与他们以前遇到的任何事情都大不相同。

于 2012-04-05T20:19:35.483 回答
1

以我的经验,最终,我总是回到普通.phtml文件——不是说这是正确的事情或理想的事情,而是解决了当时的问题。

XSLT 从来没有为我做正确的事情,即使对于更简单的逻辑模板也是如此。

如果有任何模板系统让我感到高兴,那就是Twig

于 2012-04-05T16:54:15.997 回答