Twitter Typeahead使用剃须刀引擎模板化

时间:2013-10-22 08:48:30

标签: asp.net-mvc razor bootstrap-typeahead

我需要使用Twitter Typeahead的模板功能,以便我可以显示长的样式建议(例如:带有邮政编码的郊区和以蓝色突出显示的邮政编码)。

根据twitter文档(https://github.com/twitter/typeahead.js#readme),我们需要为模板提供支持以下API调用的引擎,

var compiledTemplate = ENGINE.compile(template);

var html = compiledTemplate.render(context);

我们可以扩展剃刀视图引擎以获得这些方法吗?

否则,我需要带上像Hogan这样的东西,纯粹是为了在类型JS中执行模板

1 个答案:

答案 0 :(得分:0)

好的,我最终使用Twitter的Hogan。它只有几KB。