我遇到了这个有趣的模板工具,作者称之为hQuery,它是一个'不引人注意的服务器端脚本'。 [更多信息 - https://github.com/choonkeat/hquery]。它是用Ruby构建的,用于RoR平台。
我想知道其他平台(PHP,Python,Java)是否有类似的东西
答案 0 :(得分:1)
不是我所知道的,但我在概念上做了类似的事情,虽然更简单,在PHP中使用phpQyery和一些自定义类似html的标记。
例如,这是一个简化的非标准html块:
<bodynode>
<!--[if lt IE 9]>
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<div class="holder">
<article>
<header class="col_12f">
<component id="logo"></component>
<component id="address"></component>
<component id="languages"></component>
<component id="mainmenu"></component>
</header>
<section id="banner">
<component id="maingallery"></component>
<component id='sideMenu'></component>
</section>
<section class="col6 first" id="intro_title">
<h1 class="underlined"></h1>
<section class="col3 first" id="intro_col1"></section>
<section class="col3 last" id="intro_col2"></section>
</section>
<section class="col3" id="location"></section>
<section class="col3 last" id="services"></section>
</article>
<div class="clear"></div>
</div>
<component id="footer"></component>
</bodynode>
使用phpQuery,它在服务器端使用XML和HTML Dom节点,与jQuery非常相似,我使用ID作为密钥映射来自db的内容的所有标签。以及来自函数的自定义输出的所有<component></component>
标记。因此,<component id="logo"></component>
的存在将导致调用一个名为component_logo的函数,使用:
function replaceComponents ($pqInput){
$pqDoc = phpQuery::newDocument($pqInput);
$comps = pq('component');
foreach ($comps as $comp){
$compFunc = 'component_'.pq($comp)->attr('id');
pq($comp)->replaceWith($compFunc($comp));
}
return $pqDoc;
}
和
function component_logo($comp){
$pqComp = phpQuery::newDocument(file_get_contents('Templates/Components/logo.component.html'));
$pqComp->find('a')->attr('href','/'.currentLanguage().'/')->attr('title','Website Title');
$pqComp->find('img')->attr('src','/Gfx/logo.png');
return $pqComp;
}
虽然它不是基于MVC模式并且使用直接的过程编程,但到目前为止,这种方法允许非常快速地开发中小型站点,同时保持良好的干燥状态。
答案 1 :(得分:0)
我不喜欢使用其他模板引擎,真的是因为我发现它们对于我真正想要做的任何事情都有点重量级(例如聪明)。
有一种思维方式可以说:PHP已经是一个模板引擎......为什么要在模板中构建模板?
我在某种程度上不同意这一点,我发现模板在从PHP代码中抽象HTML时非常有用。
下面是我使用的模板类中的一个编辑方法,它将解释实际制作自己是多么容易。
$params = array("<!--[CONTENT]-->" => "This is some content!");
$path = "htmltemplates/index.html";
$html = implode("",file($path));
foreach($params as $field => $value) {
$html = str_ireplace($field, $value, $html);
}
echo $html;
围绕这个有更多的肉,但这是核心代码。将文件读入数组,内爆,搜索$ params数组并用$ html中的$ value替换$ field。输出已编辑的$ html。
您的index.html文件将类似于:
<html>
<head>
<title>This is a template</title>
</head>
<body>
<div id="page-container">
<!--[CONTENT]-->
</div>
</body>
</html>
您的输出将是:
<div id="page-container">
This is some page content!
</div>
也许看看实现自己的模板引擎! :)