如何在输入 ngTagsInput 时忽略文本检查?
How to ignore the text check while typing in ngTagsInput?
我的ng-tags-input
指令有问题,当我输入第一个标签名称D
时,可以添加成功。对于第二个标签,我输入了 Đỏ
但有些东西导致标签无效,尽管我也在 <tags-input><tags-input>
中设置了 allow-leftover-text="true"
。那么有人对这个问题有经验吗?
这是我的输入:
<tags-input ng-model="dataProducts.colors" placeholder="Nhập các màu" allow-leftover-text="true" replace-spaces-with-dashes="false"></tags-input>
为标签设置minLength 属性,新标签默认允许的最大长度为3。可能这就是它显示无效的原因。
我的ng-tags-input
指令有问题,当我输入第一个标签名称D
时,可以添加成功。对于第二个标签,我输入了 Đỏ
但有些东西导致标签无效,尽管我也在 <tags-input><tags-input>
中设置了 allow-leftover-text="true"
。那么有人对这个问题有经验吗?
这是我的输入:
<tags-input ng-model="dataProducts.colors" placeholder="Nhập các màu" allow-leftover-text="true" replace-spaces-with-dashes="false"></tags-input>
为标签设置minLength 属性,新标签默认允许的最大长度为3。可能这就是它显示无效的原因。