我希望能够编译这样的 Mustache 模板(test.mustache):
<b>This is a {{test}}</b>
变成这样的函数:
function test(obj) {
var s = '<b>This is a ' + obj.test + '</b>';
return s;
};
同时希望保留所有 Mustache 功能完好无损。是否有任何库可以做到这一点,或者如果我想要预编译的模板,我必须自己编写吗?我计划将其用于客户端应用程序。
我希望能够编译这样的 Mustache 模板(test.mustache):
<b>This is a {{test}}</b>
变成这样的函数:
function test(obj) {
var s = '<b>This is a ' + obj.test + '</b>';
return s;
};
同时希望保留所有 Mustache 功能完好无损。是否有任何库可以做到这一点,或者如果我想要预编译的模板,我必须自己编写吗?我计划将其用于客户端应用程序。