var source = '<input type="text" value"{{title}}" />' ;
var template = ***???***.compile(my_new_template, source);
var context = {title: "My New Post", body: "This is my first post!"}
Template.my_new_template.events({
'click': function (e,sender) {
var that=this;
}
});
var html = Template.my_new_template(context);
$('#workspace').append(html);
答案 0 :(得分:4)
目前无法直接编译Handlebars字符串。 Meteor包含Handlebars并且仅为ast(抽象语法树)提供编译方法,而不是直接提供字符串。但是,您可以提供不属于Handlebars功能的自己的功能。它不是公共API,但您可以通过这种方式创建Meteor模板(现在除非API更改):
&LT; 0.6.5:
var tmpl = Meteor._def_template("templateName", function () {
return "some html string";
});
0.6.5
var tmpl = Meteor.__define__("templateName", function () {
return "some html string";
});
因此,这将在Template
命名空间中创建一个模板,并为模板提供所有良好的Meteor功能(例如反应性,事件,地标等)。
您还可以通过观看Spark上的一系列截屏视频(Meteor的基础渲染引擎),了解更多有关幕后情况的信息。
http://www.eventedmind.com/posts/meteor-rendering-template-functions http://www.eventedmind.com/posts/meteor-introduction-to-rendering