我目前正在构建一个基于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()
});