我正在尝试在我的 angularjs 中使用 ui-select 指令,但它没有显示,我尝试按照文档进行操作,这就是我所做的:
<ui-select ng-model="form.gender" theme="bootstrap">
<ui-select-choices repeat="gender in genders">
{{ gender.name }}
</ui-select-choices>
</ui-select>
然后我有一系列性别:
$scope.genders = [
{
name: 'Male'
},
{
name: 'Female'
}
];
我以前没有真正使用过这个指令,所以我对自己做错了什么感到有点困惑。
我的浏览器控制台中没有显示任何错误,我也将该模块包含在我的应用程序中。
我想将它用于不仅仅是一个简单的性别下拉列表,但我认为这是一个开始,如果我能做到这一点,那么我就不会再有任何问题了。:)
编辑:所以我清除了浏览器缓存并刷新了我的页面,这次我确实注意到了一个错误:
Error: [ui.select:transcluded] Expected 1 .ui-select-match but got '0'.