为 ngx-chips 粘贴拆分模式 (Angular)
paste split pattern for ngx-chips (Angular)
我试图让用户粘贴由 , 分隔的列表;或 |使用 ngx-chips.
有一个选项可以使用 pasteSplitPattern - [?string |正则表达式]
https://github.com/Gbuomprisco/ngx-chips
当我尝试以下操作时,出现错误
[pasteSplitPattern]="[,|;]"
Parser Error: Unexpected token ,
我应该怎么做?
尝试使用以下方法:
定义一个新的正则表达式:
splitPattern = new RegExp('[\,\;]');
然后在您的模板中使用它:
[pasteSplitPattern]= "splitPattern"
我遇到了同样的问题:您必须添加 [addOnPaste]="true"
才能使其正常工作!
我试图让用户粘贴由 , 分隔的列表;或 |使用 ngx-chips.
有一个选项可以使用 pasteSplitPattern - [?string |正则表达式]
https://github.com/Gbuomprisco/ngx-chips
当我尝试以下操作时,出现错误
[pasteSplitPattern]="[,|;]"
Parser Error: Unexpected token ,
我应该怎么做?
尝试使用以下方法:
定义一个新的正则表达式:
splitPattern = new RegExp('[\,\;]');
然后在您的模板中使用它:
[pasteSplitPattern]= "splitPattern"
我遇到了同样的问题:您必须添加 [addOnPaste]="true"
才能使其正常工作!