ngTagsInput-选择标签后关闭自动完成列表

Kvn*_*vnH 5 jquery angularjs cordova angularjs-directive ng-tags-input

我将ngTagsInput指令设置如下:

 <tags-input ng-model="controller.myTags" 
   replace-spaces-with-dashes="false">
   <auto-complete source="loadTags($query)"
     min-length="0"
     load-on-empty="true"
     load-on-focus="true">
   </auto-complete>
 </tags-input>
Run Code Online (Sandbox Code Playgroud)

只要用户选择合适的输入区域,就会显示自动完成列表。但是,只要用户从自动完成列表中选择标签,我希望该列表隐藏。当前,用户选择标签后,列表仍会显示。

如果我删除了空载,则只要输入中的焦点对准,列表就不会显示。