我有以下选择:
<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 }
];但是当我运行这段代码时,在这个下拉列表中没有结果。我可以点击下拉和波纹效应发生,但没有下拉显示,也没有选择被选择。
我遗漏了什么?
发布于 2015-10-12 16:11:39
我刚刚读到,LumX在使用Bootstrap时除了LumX附带的引导程序之外,还有一个已知的问题。我删除了对nonLumX one的引用,然后它就起飞了。
https://stackoverflow.com/questions/33046204
复制相似问题