Ng-Tag-input minLength未设置属性

时间:2015-10-09 11:27:30

标签: ng-tags-input

我在我的离子项目(跨平台移动应用程序)中使用此库,并且我尝试设置minLength:1但它采用默认值(即3)。我怎样才能实现这一目标?

1 个答案:

答案 0 :(得分:1)

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#autoComplete