需求展示
前端做模糊搜索,展示搜索的字符串。
关键代码实现
// selectedColumns 搜索数据
// selectParam 用户输入字符串
this.selectedColumns.forEach((item, index) => {
let str = item.displayName.toLowerCase()
if (str.match(this.selectParam) !== null) {
this.matchIndexArr.push(index)
}
})