加载多个moustache.js / icanhas.js外部模板

时间:2014-05-30 11:58:18

标签: javascript jquery html handlebars.js template-engine

我目前正在构建一个基于javascript的网站,该网站使用icanhaz.js(fork of moustache.js)作为模板引擎。我遇到的问题是我想加载5个不同的模板文件,有没有办法让我更有效率。

$(document).ready(function() {
  $.get( "/path/to/template1.mst", function( template ) {
    ich.addTemplate("template1", template); //This is how templates are loaded in icanhas.js (similar to moustache)
  });

  $.get( "/path/to/template2.mst", function( template ) {
    ich.addTemplate("template2", template);
  });

  $.get( "/path/to/template3.mst", function( template ) {
    ich.addTemplate("template3", template);
  });

  $.get( "/path/to/template4.mst", function( template ) {
    ich.addTemplate("template4", template);
  });

  $.get( "/path/to/template5.mst", function( template ) {
    ich.addTemplate("template5", template);
  });

  renderScript()
});

0 个答案:

没有答案