我有以下选择:
<lx-select ng-model="selects.selectedPerson" placeholder="Recommended by" choices="people" floating-label>
<lx-select-selected>{{ $selected.name + ' ' + $selected.age }}</lx-select-selected>
<lx-select-choices>{{ $choice.email }}</lx-select-choices>
</lx-select>
以及以下$ scope变量:
$scope.people = [
{ name: 'Adam', email: 'adam@email.com', age: 10 },
{ name: 'Amalie', email: 'amalie@email.com', age: 12 }
];
但是当我运行此代码时,此下拉列表中没有结果。我可以单击下拉列表并发生涟漪效应,但不会显示下拉列表,也不会选择任何选项。
我错过了什么?
答案 0 :(得分:0)
我刚刚读到LumX在使用Bootstrap时除了LumX附带的引导程序外还有一个已知问题。我删除了对nonLumX的引用,它就开始了。