vue input输入框远程搜索
程序员文章站
2022-06-07 15:33:33
...
基于vue远程搜索、模糊查询组件
<template>
<div class="Home">
<input
v-model="keyWords"
type="text"
placeholder="请输入关键词"
@input="handleQuery"
/>
<ul>
<li v-for="(item, index) in results" :key="index" v-html="item.name" @click="getText(item.name)"></li>
</ul>
</div>
</template>
<script>
export default {
name: 'Home',
data() {
return {
keyWords: '',
results: [],
timer:null,
FalseData:[
{name:'他的名字叫张三'},
{name:'张三是他的名字'},
{name:'张三就是他本人'},
] //假数据
}
},
methods: {
clearTimer() {
if (this.timer) {
clearTimeout(this.timer)
}
},
handleQuery(event) {
this.clearTimer()
console.log(event.timeStamp)
this.timer = setTimeout(() => {
console.log(event.timeStamp)
// console.log(this.lastTime)
// if (this.lastTime - event.timeStamp === 0) {
// this.$http.post('/api/vehicle').then(res => {
// console.log(res.data.data)
// this.changeColor(res.data.data)
// })
this.changeColor(this.FalseData)
// }
}, 2000)
},
changeColor(resultsList) {
resultsList.map((item, index) => {
// console.log('item', item)
if (this.keyWords && this.keyWords.length > 0) {
// 匹配关键字正则
let replaceReg = new RegExp(this.keyWords, 'g')
// 高亮替换v-html值
let replaceString =
'<span class="search-text">' + this.keyWords + '</span>'
resultsList[index].name = item.name.replace(
replaceReg,
replaceString
)
}
})
this.results = []
this.results = resultsList
},
// 把带有html 的文本变成text文本
repalceHtmlToText(str) {
str = str.replace(/<\/?.+?>/g, "");
str = str.replace(/ /g, "");
return str;
},
// 得到转化后的文本赋值给 keyWords
getText(name){
console.log(name)
this.keyWords = this.repalceHtmlToText(name)
this.$emit("getName",name)
}
}
}
</script>
<!-- Add "scoped" attribute to limit CSS to this component only -->
<style>
.search-text {
color: red;
}
</style>
参考https://blog.csdn.net/weixin_34399060/article/details/88771087
上一篇: 糕点战争:法国因一块糕点与墨西哥大动干戈
推荐阅读
-
vue input输入框关键字筛选检索列表数据展示
-
vue input输入框关键字筛选检索列表数据展示
-
vue input输入框模糊查询的示例代码
-
VUE实现Studio管理后台(十二):添加输入组合,复杂输入,输入框Input系列
-
VUE实现Studio管理后台(九):开关(Switch)控件,输入框input系列
-
vue.js项目 el-input 组件 监听回车键实现搜索
-
vue Element-ui input 远程搜索与修改建议显示模版的示例代码
-
vue element-ui实现input输入框金额数字添加千分位
-
vue.js项目 el-input 组件 监听回车键实现搜索功能示例
-
VUE实现Studio管理后台(十三):按钮点选输入控件,input输入框系列