Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用带有 Angular 5 的 ngx-chips 并且无法弄清楚如何停止/禁用选择添加的标签。
我在文档中看到有 (onSelect) 方法并尝试返回 false 但它不起作用。我也尝试通过 (click) 来阻止事件,但这种方法不适用于 ngx-chips。
有谁知道添加标签后如何停止标签选择?
您可以使用readonly标签上的属性来实现您想要的。使用onItemAdded来自 ngx-chips 的事件,并在添加项目时,readonly将新标签的属性设置为 true。
readonly
onItemAdded
在此处查看有关此的文档。
这是一个 StackBlitz 示例。