How to use precompiled templates in Handlebars with RequireJS?

南楼画角 提交于 2020-01-12 07:52:05

问题


I'd like to precompile my Handlebars templates, but I'm not sure how this works in development mode.

Is it common practice have some background process like Guard running to constantly monitor changes to Handlebars template files?

I'm using RequireJS to pull in templates; e.g.:

define(['jquery', 'handlebars', 'text!templates/my_template'], function($, Handlebars, myTemplate) {

  // ...

  var data = {"some": "data", "some_more": "data"};
  var templateFn = Handlebars.compile(myTemplate);
  $('#target').append(templateFn(data));

  // ...

});

So I understand once templates are precompiled, one would do this:

define(['jquery', 'handlebars'], function($, Handlebars) {

  // ...

  var data = {"some": "data", "some_more": "data"};
  var template = Handlebars.templates['my_template'];
  $('#target').append(template(data));

  // ...

});

Note the following about the in the second code snippet:

  1. The RequireJS module no longer pulls in the template.
  2. Handlebars.compile() is no longer used.

So typically would I have Guard running to keep my templates compiled whenever file system-level modifications happen to template files?

Basically my question is, is the intention for developers to do this?

if (development) {
  compile templates
}
else {
  use precompiled templates
}

I'm also using Rails, so maybe there is some black magic like sass-rails.


回答1:


Have you take a look at Require.js Handlebars Plugin (https://github.com/SlexAxton/require-handlebars-plugin) or epeli's requirejs-hbs (https://github.com/epeli/requirejs-hbs) ?




回答2:


Since asking this question, I've found that another way to achieve this might be via Grunt Watch. However, an even better way is to use Grunt and Browserify, skipping RequireJS altogether. Then you will be using NPM packages...and most of the libraries available with RequireJS seem to be available as NPM packages as well (amazingly even DOM-based libraries, like jQuery, Backbone, Angular). Then you use synchronous require() calls to require things:

var $ = require('jquery'),
    Backbone = require('backbone'),
    AppRouter = require('./app/routers/app');

// Compile LESS and attach resulting CSS to the HEAD.
require('./less/app.less');

$(function() {
    new AppRouter();
    Backbone.history.start();
});

This is much nicer, and it's possible because the app is fully built every time it runs. Combine this with Grunt Watch such that your app rebuilds itself every time there is a change, and you're in business.

And the build process even takes care of building Handlebars templates. To include a template, you would just do require('./templates/my-template.hbs'); and the build process for grunt-browserify will find this require() call, compile the template, and include the compiled template into the build app js file.

Much nicer than RequireJS!




回答3:


This artcle about Require.js and Handlebars might help http://seanamarasinghe.com/developer/requirejs-handlebars/



来源:https://stackoverflow.com/questions/18237482/how-to-use-precompiled-templates-in-handlebars-with-requirejs

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!