typeahead
来自http://angular-ui.github.io/bootstrap/的指令需要注意的是它试图模仿来自 AngularJS的select 指令使用的语法。这意味着用于选择要绑定的模型和标签的所有表达式都是AngularJS 表达式。这反过来意味着您可以使用任何 AngularJS 表达式来计算标签的文本。
例如,要显示您想要的文本,您可以编写:
typeahead="item as item.title + ' (' + item.type + ')' for item in titles | filter:{title:$viewValue}"
假设您的数据模型如下所示:
$scope.titles = [
{title: 'Amazing Grace', type: 'movie'},
{title: 'Amazing Grace', type: 'song'}
];
在这里工作:
http ://plnkr.co/edit/VemNkVnVtnaRYaRVk5rX?p=preview
为属性中的标签编写复杂的表达式typeahead
可能会变得很难看,但没有什么能阻止您将标签计算逻辑移动到作用域上公开的函数中,例如:
typeahead="item as label(item) for item in titles | filter:{title:$viewValue}"
其中label
是在作用域上公开的函数:
$scope.label = function(item) {
return item.title + ' (' + item.type + ')';
};
另一个笨蛋:http://plnkr.co/edit/ftKZ96UrVfyIg6Enp7Cy? p =preview
至于您关于图标的问题 - 您可以在标签表达式中嵌入 HTML,但这编写和维护起来很糟糕。幸运的是,typeahead 指令允许您为匹配的项目提供自定义模板,如下所示:
typeahead-template-url="itemTpl.html"
在自定义模板中,您可以使用任何您想要的表达式或 AngularJS 指令。ngClass
在指令的帮助下,添加图标变得微不足道:
<script type="text/ng-template" id="itemTpl.html">
<a tabindex="-1">
<i ng-class="'icon-'+match.model.type"></i>
<span ng-bind-html-unsafe="match.model.title | typeaheadHighlight:query"></span>
</a>
</script>
和工作plunk:http ://plnkr.co/edit/me20JzvukYbK0WGy6fn4?p=preview
非常简洁的小指令,不是吗?