我正在尝试使用jsmart在客户端呈现Smarty 3 模板。如果您没有使用它们的经验,请继续阅读,因为这可能只是我正在制作的一个简单的 JavaScript 错误。
它适用于简单的模板:
根据文档,我创建模板(通过 AJAX 接收),然后渲染它(将数据传递给它):
var template = new jSmart(templateReceivedViaAJAX);
var content = template.fetch({"firstname":"adam", "secondname":"lynch"});
然后我简单地将渲染的输出粘贴在div
:
$('#dest').html(content);
模板继承
尝试渲染包含 , 等的模板时会出现include
问题extends
。
从文档中:
每当 jSmart 遇到任何一个模板包含标签时,它都会调用 jSmart.prototype.getTemplate() 方法并将标签文件参数的值传递给它。该方法必须返回模板的文本。
getTemplate() 的默认实现会引发异常。因此,由 jSmart 用户来覆盖此方法并提供模板的文本。
重写getTemplate()
函数:
jSmart.prototype.getTemplate = function(name) {
$.ajax({type: 'GET', url: name, async:false, success: function(data) {
console.log('got template at '+name+'. The following is the contents:');
console.debug(data);
return data;
}});
}
渲染包含对子模板的调用的父模板时的控制台输出:include
<div class="row">
<label for="second" class="span4">Second Name:</label>
<input type="text" class="span4" placeholder="{$secondname}" id="second" />
</div>
<p>B;lsdsfasfsfds</p>
Uncaught Error: No template for /bundles/templatedemo/templates/form_include.html.smarty
渲染包含对父模板的调用的子模板时的控制台输出:extend
got template at /bundles/templatedemo/templates/form.html.smarty. The following is the contents: templates:58
<form class="well">
<div class="row">
<label for="first" class="span4">First Name:</label>
<input type="text" class="span4" placeholder="{$firstname}" id="first" />
</div>
{block name=form_include}{/block}
<input type="submit" class="btn btn-inverse" />
</form>
Uncaught Error: No template for /bundles/templatedemo/templates/form.html.smarty
(expanded:)
S
(anonymous function)
jSmart.fetch
(anonymous function)
f.event.dispatch
f.event.add.h.handle.i
编辑:
如果模板内容预先存在,则继承有效(例如,如果它们是硬编码的,而不是通过 AJAX 检索)。