AngularJS:ui-选择不在视图上显示

时间:2015-11-22 13:51:59

标签: angularjs ui-select

我已经尝试了所有可能的结果。但无法让这个工作。我是网络开发的新手,请帮忙。

我从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>

2 个答案:

答案 0 :(得分:2)

使用您的代码创建了一个plunkr,它运行正常! 假设您的控制器设置正确并注入了ui.select模块,则上述代码应该可以正常工作。

请记住,您还应加载并注入ng-sanitize模块,以便可以加载ng-bind-html指令。

答案 1 :(得分:0)

请检查你的bootstrap版本

您正在使用需要引导程序ui-select

0.14.x

请参阅此链接https://stackoverflow.com/a/33134346/4406065