我已经尝试了所有可能的结果。但无法让这个工作。我是网络开发的新手,请帮忙。
我从github中删除了ui-select。将必要的文件(CSS& jS)添加到我的index
中,但仍无法使其正常工作。我也读过这些文档。我还ngSanitize
正在运行。
这样的简单字段不会出现。
<ui-select ng-model="person.selected" theme="bootstrap">
<ui-select-match placeholder="Select or search a person in the list...">{{$select.selected.name}}</ui-select-match>
<ui-select-choices repeat="item in people | filter: $select.search">
<div ng-bind-html="item.name | highlight: $select.search"></div>
<small ng-bind-html="item.email | highlight: $select.search"></small>
</ui-select-choices>
</ui-select>
答案 0 :(得分:2)
使用您的代码创建了一个plunkr,它运行正常!
假设您的控制器设置正确并注入了ui.select
模块,则上述代码应该可以正常工作。
请记住,您还应加载并注入ng-sanitize
模块,以便可以加载ng-bind-html
指令。
答案 1 :(得分:0)