我正在尝试抽象一些代码,并希望利用dust.helpers 来呈现parial。
我目前的设置:
{> "includes/components/link" /}
我的理想设置:
{@uiComponent name="link" /}
我的帮手:
dust.helpers.uiComponent = function (chunk, context, bodies, params) {
return dust.render('includes/components/' + name, context, function (err, out) {
chunk.end(out);
});
};
我还尝试了许多其他的东西,但没有任何效果。
是的,我尝试查看文档。:(
任何建议将不胜感激!