限制Angular ng-select中标签的最大长度

问题描述

具有 ng-select 组件-> https://ng-select.github.io/ng-select#/tags(没有下拉面板的标签 )

我想知道是否有类似<input maxlength="255">的东西。因为如果我尝试 maxlengthsize,它不起作用。

如果在字符 255 之后插入附加字符会被中断,就像 <input>

提前致谢

解决方法

ng-select 似乎尚不支持,但您可以执行以下操作:

 <ng-select 
...
[addTag]="addTagFn">
</ng-select>

addTagFn = (term) => {
    if (// check here if length of term matches 255 or less) {
        return term;
    }
    return null;
}