小編給大家分享一下如何實現(xiàn)vue搜索和vue模糊搜索,相信大部分人都還不怎么了解,因此分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后大有收獲,下面讓我們一起去了解一下吧!
成都創(chuàng)新互聯(lián)是一家集網(wǎng)站建設,永善企業(yè)網(wǎng)站建設,永善品牌網(wǎng)站建設,網(wǎng)站定制,永善網(wǎng)站建設報價,網(wǎng)絡營銷,網(wǎng)絡優(yōu)化,永善網(wǎng)站推廣為一體的創(chuàng)新建站企業(yè),幫助傳統(tǒng)企業(yè)提升企業(yè)形象加強企業(yè)競爭力。可充分滿足這一群體相比中小企業(yè)更為豐富、高端、多元的互聯(lián)網(wǎng)需求。同時我們時刻保持專業(yè)、時尚、前沿,時刻以成就客戶成長自我,堅持不斷學習、思考、沉淀、凈化自己,讓我們?yōu)楦嗟钠髽I(yè)打造出實用型網(wǎng)站。
1、使用vue來實現(xiàn)一般搜索
submitQuery:function(){ this.query = this.$refs.search.value.trim(); },
queryDate:function(list){ if (this.query === '') { return list } return list.filter((item)=>{ if(item.name.indexOf(this.query) != -1){ return item; } }) },
2、vue模糊搜索,原理都是一樣的
篩選
onSubmit() { this.query = this.$refs.search.value.trim(); this.query1 = this.$refs.search2.value.trim(); }, queryDate:function(list){ if (this.query === '' && this.query1 === '') { return list } else if (this.query !== '' && this.query1 === '') { return list.filter(item => { if (item.name.indexOf(this.query) !== -1) { return item } }) } else if (this.query === '' && this.query1 !== '') { return list.filter(item => { if (item.mobile.indexOf(this.query1) !== -1) { return item } }) } else if (this.query !== '' && this.query1 !== '') { return list.filter(item => { if (item.name.indexOf(this.query) !== -1 && item.mobile.indexOf(this.query1) !== -1) { return item } }) } },
以上是“如何實現(xiàn)vue搜索和vue模糊搜索”這篇文章的所有內(nèi)容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內(nèi)容對大家有所幫助,如果還想學習更多知識,歡迎關注創(chuàng)新互聯(lián)行業(yè)資訊頻道!