最新文章專題視頻專題問(wèn)答1問(wèn)答10問(wèn)答100問(wèn)答1000問(wèn)答2000關(guān)鍵字專題1關(guān)鍵字專題50關(guān)鍵字專題500關(guān)鍵字專題1500TAG最新視頻文章推薦1 推薦3 推薦5 推薦7 推薦9 推薦11 推薦13 推薦15 推薦17 推薦19 推薦21 推薦23 推薦25 推薦27 推薦29 推薦31 推薦33 推薦35 推薦37視頻文章20視頻文章30視頻文章40視頻文章50視頻文章60 視頻文章70視頻文章80視頻文章90視頻文章100視頻文章120視頻文章140 視頻2關(guān)鍵字專題關(guān)鍵字專題tag2tag3文章專題文章專題2文章索引1文章索引2文章索引3文章索引4文章索引5123456789101112131415文章專題3
問(wèn)答文章1 問(wèn)答文章501 問(wèn)答文章1001 問(wèn)答文章1501 問(wèn)答文章2001 問(wèn)答文章2501 問(wèn)答文章3001 問(wèn)答文章3501 問(wèn)答文章4001 問(wèn)答文章4501 問(wèn)答文章5001 問(wèn)答文章5501 問(wèn)答文章6001 問(wèn)答文章6501 問(wèn)答文章7001 問(wèn)答文章7501 問(wèn)答文章8001 問(wèn)答文章8501 問(wèn)答文章9001 問(wèn)答文章9501
當(dāng)前位置: 首頁(yè) - 科技 - 知識(shí)百科 - 正文

基于Vue實(shí)現(xiàn)關(guān)鍵詞實(shí)時(shí)搜索高亮顯示關(guān)鍵詞

來(lái)源:懂視網(wǎng) 責(zé)編:小采 時(shí)間:2020-11-27 22:11:11
文檔

基于Vue實(shí)現(xiàn)關(guān)鍵詞實(shí)時(shí)搜索高亮顯示關(guān)鍵詞

基于Vue實(shí)現(xiàn)關(guān)鍵詞實(shí)時(shí)搜索高亮顯示關(guān)鍵詞:最近在做移動(dòng)real-time-search于實(shí)時(shí)搜索和關(guān)鍵詞高亮顯示的功能,通過(guò)博客的方式總結(jié)一下,同時(shí)希望能夠幫助到別人~~~ 如果不喜歡看文字的朋友我寫了一個(gè)demo方便已經(jīng)上傳到了github上,可以clone下來(lái)直接看代碼 https://github.com/IT0
推薦度:
導(dǎo)讀基于Vue實(shí)現(xiàn)關(guān)鍵詞實(shí)時(shí)搜索高亮顯示關(guān)鍵詞:最近在做移動(dòng)real-time-search于實(shí)時(shí)搜索和關(guān)鍵詞高亮顯示的功能,通過(guò)博客的方式總結(jié)一下,同時(shí)希望能夠幫助到別人~~~ 如果不喜歡看文字的朋友我寫了一個(gè)demo方便已經(jīng)上傳到了github上,可以clone下來(lái)直接看代碼 https://github.com/IT0

實(shí)時(shí)搜索通過(guò)觸發(fā)input事件和定時(shí)器來(lái)實(shí)現(xiàn)

<input v-model="keyWords" type="text" placeholder="請(qǐng)輸入關(guān)鍵詞" @input="handleQuery">

在每次輸入框的值變化的時(shí)候都會(huì)執(zhí)行handleQuery方法

 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)
 })
 // }
 }, 2000)
 },

在handleQuery方法中有一個(gè)定時(shí)器,通過(guò)設(shè)置時(shí)間來(lái)控制搜索的執(zhí)行,由于輸入時(shí)input的框中的值總是變化的,所以每次變化都會(huì)執(zhí)行一次handleQuery,我們通過(guò)clearTimer方法清除timer定時(shí)器,如果兩次輸入的間隔時(shí)間小于你設(shè)置的時(shí)間間隔(2s)的話第一個(gè)定期器將會(huì)被清除,同時(shí)執(zhí)行第二個(gè)定時(shí)器。這樣就實(shí)現(xiàn)了實(shí)施搜多的控制,而不是每次輸入的時(shí)候就去請(qǐng)求數(shù)據(jù)。

注意:如果時(shí)間設(shè)置過(guò)短或者說(shuō)我們服務(wù)器請(qǐng)求較慢的話,可能第一次查詢還沒(méi)有返回便進(jìn)行了第二次查詢,那么返回的數(shù)據(jù)將是兩次查詢的結(jié)果,造成查詢結(jié)果的混亂,如果使用的是axios可以利用axios.CancelToken來(lái)終止上一次的異步請(qǐng)求,防止舊關(guān)鍵字查詢覆蓋新輸入的關(guān)鍵字查詢結(jié)果。

高亮顯示

通過(guò)RegExp實(shí)現(xiàn)對(duì)關(guān)鍵詞的替換,通過(guò)添加class實(shí)現(xiàn)關(guān)鍵詞高亮顯示

 changeColor (resultsList) {
 resultsList.map((item, index) => {
 // console.log('item', item)
 if (this.keyWords && this.keyWords.length > 0) {
 // 匹配關(guān)鍵字正則
 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
}

在查詢到結(jié)果后執(zhí)行changeColor方法將查詢出來(lái)的數(shù)據(jù)傳遞過(guò)來(lái)通過(guò)RegExp來(lái)將關(guān)鍵詞替換成huml標(biāo)簽,同時(shí)用vue中的v-html進(jìn)行綁定。最后將demo完整的代碼展示出來(lái)

<template>
 <div class="Home">
 <input v-model="keyWords" type="text" placeholder="請(qǐng)輸入關(guān)鍵詞" @input="handleQuery">
 <ul>
 <li v-for="(item,index) in results" :key='index' v-html='item.name'></li>
 </ul>
 </div>
</template>

<script>
export default {
 name: 'Home',
 data () {
 return {
 keyWords: '',
 results: []
 }
 },
 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)
 })
 // }
 }, 2000)
 },

 changeColor (resultsList) {
 resultsList.map((item, index) => {
 // console.log('item', item)
 if (this.keyWords && this.keyWords.length > 0) {
 // 匹配關(guān)鍵字正則
 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
 }
 }
}
</script>

<!-- Add "scoped" attribute to limit CSS to this component only -->
<style>
.search-text{
color: red;
}
</style>

最后,如果本文對(duì)你的學(xué)習(xí)或者工作有幫助的話,麻煩給個(gè)star鼓勵(lì)下啦~~~

聲明:本網(wǎng)頁(yè)內(nèi)容旨在傳播知識(shí),若有侵權(quán)等問(wèn)題請(qǐng)及時(shí)與本網(wǎng)聯(lián)系,我們將在第一時(shí)間刪除處理。TEL:177 7030 7066 E-MAIL:11247931@qq.com

文檔

基于Vue實(shí)現(xiàn)關(guān)鍵詞實(shí)時(shí)搜索高亮顯示關(guān)鍵詞

基于Vue實(shí)現(xiàn)關(guān)鍵詞實(shí)時(shí)搜索高亮顯示關(guān)鍵詞:最近在做移動(dòng)real-time-search于實(shí)時(shí)搜索和關(guān)鍵詞高亮顯示的功能,通過(guò)博客的方式總結(jié)一下,同時(shí)希望能夠幫助到別人~~~ 如果不喜歡看文字的朋友我寫了一個(gè)demo方便已經(jīng)上傳到了github上,可以clone下來(lái)直接看代碼 https://github.com/IT0
推薦度:
  • 熱門焦點(diǎn)

最新推薦

猜你喜歡

熱門推薦

專題
Top