为啥angularjs给bootstrap-select动态添加<option>的时候能追加一条
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了为啥angularjs给bootstrap-select动态添加<option>的时候能追加一条相关的知识,希望对你有一定的参考价值。
只有这一条数据 这是我的代码<div class="form-group"> <label class="col-sm-2 control-label">产品标签</label> <div class="col-sm-10" style="float: left;" > <select ng-model="label" class="selectpicker form-control" multiple data-max-options="3"> <option ng-repeat="x in labels" value="x.name">x.name</option> </select> </div>
这里明明都追加出来了 但是是显示一条
你打印看看 里面是几条数据
我没用过ng-repeat
我一般用*ngFor ="let x of labels"
以上是关于为啥angularjs给bootstrap-select动态添加<option>的时候能追加一条的主要内容,如果未能解决你的问题,请参考以下文章