我正在将Angular 6与n2-smart-table一起使用。我想在过滤器上搜索带和不带掩码的字符串 。
例如:28871154000178
和28.871.154/0001-78
应该返回相同的数据。
我环顾了各种论坛,但找不到这种方法。
谢谢!
答案 0 :(得分:0)
我找到了使用filterFunction
的方法。
示例:
columns: {
column {
title: 'CPF/CNPJ',
filterFunction(cell?: any, search?: string) {
const match = cell.indexOf(search) > -1;
const matchClean = cell.replace(/[^\d]+/g, '').indexOf(search) > -1;
return (match || search === '') ? true : (matchClean) ? true : false;
}
}
}