typeahead.js让我们能够使用我们选择的引擎为我们的自动完成建议呈现模板,只要引擎实现了这个 API:
// engine has a compile function that returns a compiled template
var compiledTemplate = ENGINE.compile(template);
// compiled template has a render function that returns the rendered template
// render function expects the context to be first argument passed to it
var html = compiledTemplate.render(context);
现在dust.js对此事的看法略有不同:
var compiled = dust.compile("Hello {name}!", "intro");
dust.loadSource(compiled);
因为我已经集成了dust.js,所以我也想用它来呈现预先输入的建议。我可能可以包装灰尘的引擎对象并提供所需的 API,但我想知道是否有一种不那么侵入性和/或更优雅的方式来做到这一点,例如通过将所需的函数动态附加到灰尘对象本身?
编辑添加:混合 @user2103008 和 @Simon 所拥有的,这是我在 typeahead-0.9.3 中使用的内容:
function typeaheadFakeCompile(dustTemplateName) {
return function(data) {
var html;
dust.render(dustTemplateName, data, function(err, out) { html = out; })
return html;
}
}
var compiled = dust.compile('Hello {name}!', 'myTemplate');
dust.loadSource(compiled);
$('selector').typeahead({
template: typeaheadFakeCompile('myTemplate')
)};