我在我的ionic项目(跨平台移动应用程序)中使用这个库,我尝试设置minLength: 1,但它采用默认值(即3)。我如何实现这一点?
将min-length="1"
属性设置为<auto-complete>
而不是<tags-input>
,以获得每个字符的建议
:
<tags-input ng-model="vm.tags">
<auto-complete source="vm.loadTags($query)"
min-length="1"
highlightMatchedText="true">
</auto-complete>
</tags-input>
虽然我花了几个小时才弄清楚怎么做,但当我再次阅读autoComplete的文档时,它闪现在我眼前。
http://mbenford.github.io/ngTagsInput/documentation/api自动完成