input type="text" placeholder="" ng-autocomplete ng-keyup="addDeliveryAreas($event)" ng-model="deliveryareas.search" details="details" options="options"
我正在使用 ng-autocomplete 指令。 https://github.com/wpalahnuk/ngAutocomplete 我想在从选项列表中选择地址时调用角度函数
input type="text" placeholder="" ng-autocomplete ng-keyup="addDeliveryAreas($event)" ng-model="deliveryareas.search" details="details" options="options"
我正在使用 ng-autocomplete 指令。 https://github.com/wpalahnuk/ngAutocomplete 我想在从选项列表中选择地址时调用角度函数
我尝试了几件事.. ngblur="myfunction()" 适用于我的用例
只需使用 ng-change 指令。angular doc每次对 ng-model 进行更改时,都会调用您将绑定到它的函数。