小編給大家分享一下如何實現(xiàn)vue搜索和vue模糊搜索,相信大部分人都還不怎么了解,因此分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后大有收獲,下面讓我們一起去了解一下吧!
成都創(chuàng)新互聯(lián)是一家集網(wǎng)站建設(shè),永善企業(yè)網(wǎng)站建設(shè),永善品牌網(wǎng)站建設(shè),網(wǎng)站定制,永善網(wǎng)站建設(shè)報價,網(wǎng)絡(luò)營銷,網(wǎng)絡(luò)優(yōu)化,永善網(wǎng)站推廣為一體的創(chuàng)新建站企業(yè),幫助傳統(tǒng)企業(yè)提升企業(yè)形象加強企業(yè)競爭力??沙浞譂M足這一群體相比中小企業(yè)更為豐富、高端、多元的互聯(lián)網(wǎng)需求。同時我們時刻保持專業(yè)、時尚、前沿,時刻以成就客戶成長自我,堅持不斷學習、思考、沉淀、凈化自己,讓我們?yōu)楦嗟钠髽I(yè)打造出實用型網(wǎng)站。
1、使用vue來實現(xiàn)一般搜索
<form action="" @submit="submitQuery" class="all_two"> <el-input v-model="input" placeholder="請輸入內(nèi)容" ref="search" ></el-input> </form> <div class="all_three"> <div v-for="item in this.$store.state.chufang.alldata"> <div v-for="item1 in queryDate(item.cabinet)" > <input type="checkbox" name="checkbox" value="checkbox" :checked="item1.checks==0? true:false"> <span>{{item1.name}}</span> </div> </div> </div
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模糊搜索,原理都是一樣的
<el-form :inline="true" :model="formInline" class="demo-form-inline mt15"> <el-form-item> <el-input v-model="formInline.name" ref="search" placeholder="姓名"></el-input> </el-form-item> <el-form-item> <el-input v-model="formInline.phone" ref="search2" placeholder="手機號"></el-input> </el-form-item> <el-form-item> <el-button type="primary" @click="onSubmit">篩選</el-button> </el-form-item> </el-form>
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)容對大家有所幫助,如果還想學習更多知識,歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道!
本文名稱:如何實現(xiàn)vue搜索和vue模糊搜索
新聞來源:http://aaarwkj.com/article2/pdehoc.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供搜索引擎優(yōu)化、微信小程序、服務(wù)器托管、微信公眾號、網(wǎng)站營銷、外貿(mào)建站
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時需注明來源: 創(chuàng)新互聯(lián)