如何在meteor中运行时编译新模板?

时间:2012-11-25 11:56:43

标签: javascript templates meteor handlebars.js

如何使用Handlebars.js在运行时在运行时编译新模板?

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);

1 个答案:

答案 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