我使用的是角形 ui-bootstrap 类型头,我想用它来选择很多选项,所以当 selectMatch 方法启动时,我需要得到选中的值,但是我不知道如何在我的控制器中做到这一点
<div class='container-fluid' ng-controller="TypeaheadCtrl">
<pre>Model: {{selected| json}}</pre>
<input type="text" ng-model="selected" typeahead="state for state in states | filter:$viewValue">
如果我观察所选择的值,每次按下一个键时我都会得到更改..。
scope.$watch('selected', function(newValue, oldValue) {... });
我知道 selectMatch 方法是当用户按下输入键或单击列表时调用的方法,但我不知道如何对该方法进行回调..。
谢谢!