Handlebars.js learning

官網: http://handlebarsjs.com/html

最近想學Ember.js, 瞭解到Handlebars模板引擎. 相比Python Mako, Jinja2 跟簡單. 自定義 Block 很是的方便Handlebars.registerHelper(name, function() { ... });this

(function($) {
  var compiled = {};
  $.fn.handlebars = function(template, data) {
    if (template instanceof jQuery) {
      template = $(template).html();
    }
    compiled[template] = Handlebars.compile(template);
    this.html(compiled[template](data));
  };
})(jQuery);
相關文章
相關標籤/搜索