От помощника пыли, как я могу получить имя шаблона, из которого я называюсь, например:dust.js - шаблон имя самоанализ от помощника
var compiled = dust.compile("hi, I'm the {@whoami/} template!", "hi.dust");
dust.loadSource(compiled);
// should assert true
dust.render("hi.dust", {}, function(er, out) {
assert(out, "hi, I'm the hi.dust template!");
});
помочь мне с {@whoami}
помощником поэтому он утверждает true
:
dust.helpers.whoami = function (chunk, context, bodies, params) {
var str = /* >>> HELP ME HERE <<< */;
return chunk.write(str);
}
Спасибо