我正在使用角带mgcrea.ngStrap.select(http://mgcrea.github.io/angular-strap/#/selects)
我正在尝试使用onSelect回调,但回调从未调用过,
我尝试使用以下内容:
<button type="button" class="btn btn-default"
on-select="selectCallback"
ng-model="selectedIcons" data-html="1" data-multiple="1"
data-animation="am-flip-x" bs-options="icon.value as icon.label for icon in icons" bs-select>
Action <span class="caret"></span>
</button>
我准备了一个小笨蛋来解释这个问题: http://plnkr.co/edit/jJvCF7qVvBrVSFK5RVN3?p=preview
答案 0 :(得分:0)
使用回调的方法是使用bs-on-X,例如:
bs-on-select="selectCallback"
完整示例:
<button type="button" class="btn btn-default"
bs-on-select="selectCallback"
ng-model="selectedIcons" data-html="1" data-multiple="1"
data-animation="am-flip-x" bs-options="icon.value as icon.label for icon in icons" bs-select>
Action <span class="caret"></span>
</button>