我正在使用 angular ui-bootstrap typeahead,我想用它来选择很多选择,所以我需要在启动 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 是当用户按 Enter 或单击列表时调用的方法,但我不知道如何对此进行回调...
谢谢 !