您好,登錄后才能下訂單哦!
這篇文章主要介紹Vue怎么實現(xiàn)Mysql數(shù)據(jù)庫數(shù)據(jù)的模糊查詢,文中介紹的非常詳細(xì),具有一定的參考價值,感興趣的小伙伴們一定要看完!
輸入框中輸入數(shù)據(jù),根據(jù)輸入的結(jié)果模糊搜索數(shù)據(jù)庫對應(yīng)內(nèi)容,實現(xiàn)模糊查詢。
輸入框使用v-model
雙向綁定查詢數(shù)據(jù)keyWord
。
<el-input v-model="keyWord" placeholder="請輸入關(guān)鍵字搜索" clearable></el-input> <el-button type="success" icon="el-icon-search" @click="search"></el-button>
由于輸入框和顯示結(jié)果的不再同一view
下,所以在路由跳轉(zhuǎn)時將搜索結(jié)果傳遞給顯示結(jié)果的頁面,這里用的query
。
search函數(shù):
SearchResult.vue
代碼
在created
函數(shù)中獲取輸入框傳來的keyWord
getData(offset,limit)
函數(shù)使用axios
向后端根據(jù)keyWord
查詢數(shù)據(jù),其中offset
和limit
是分頁查詢的參數(shù)。
//請求數(shù)據(jù)庫數(shù)據(jù)的方法 getData(offset,limit){ this.axios.post('/php/search.php', qs.stringify({ offset: offset, limit: limit, keyWord: this.keyWord }), { headers: { 'Content-Type': 'application/x-www-form-urlencoded' } }).then((res) => { this.total = res.data.total this.resultList = res.data.data }).catch((err) => { this.$message.error(err) })
獲取數(shù)據(jù)成功后就會將數(shù)據(jù)存入resultList
數(shù)組中,只需循環(huán)遍歷該數(shù)組就可以向前端展示查詢結(jié)果了。
后端使用的是php
寫的,主要利用了sql
語句的like
來實現(xiàn)模糊查詢。
后端search.php
文件,將數(shù)據(jù)庫連接基本信息改為自己的。
<?php $servername = "主機(jī)地址"; $username = "賬戶"; $password = "密碼"; $dbname = "數(shù)據(jù)庫名稱"; // 創(chuàng)建連接 $conn = new mysqli($servername, $username, $password, $dbname); // Check connection if ($conn->connect_error) { die("連接失敗: " . $conn->connect_error); } $keyWord = $_POST['keyWord']; //獲取前端的參數(shù) 開始和結(jié)束number if ( !isset( $_POST['offset'] ) ) { echo 0; exit(); }; $offset = ( int )$_POST['offset']; if ( !isset( $_POST['limit'] ) ) { echo 0; exit(); }; $limit = ( int )$_POST['limit']; //分頁查詢數(shù)據(jù)庫 $sql = "SELECT * FROM posts where title like '%$keyWord%' order by id desc LIMIT $limit OFFSET $offset"; $result = $conn->query($sql); $sqlGetCount = "SELECT COUNT(*) cnt FROM posts where title like '%$keyWord%'"; $rescnt = $conn->query($sqlGetCount); $rescnt = $rescnt->fetch_assoc(); $arr = array(); if ($result->num_rows > 0) { while ( $row = $result->fetch_assoc() ) { array_push( $arr, $row ); } //echo json_encode( $arr, JSON_UNESCAPED_UNICODE ); echo json_encode(array_merge(array('data'=>$arr),array('total'=>(int)$rescnt['cnt']))); } else { echo 0; } mysqli_close( $conn ); ?>
注意sql語句:
SELECT * FROM posts where title like '%$keyWord%' order by id desc LIMIT $limit OFFSET $offset;
like
后面應(yīng)該使用 '%$keyWord%‘
傳遞參數(shù),而不是 %' $keyWord'%
,算踩了一個坑吧。
然后這是根據(jù)輸入的數(shù)據(jù)模糊查詢標(biāo)題,也就是數(shù)據(jù)段title的,可以改為查詢其他的內(nèi)容。
以上是“Vue怎么實現(xiàn)Mysql數(shù)據(jù)庫數(shù)據(jù)的模糊查詢”這篇文章的所有內(nèi)容,感謝各位的閱讀!希望分享的內(nèi)容對大家有幫助,更多相關(guān)知識,歡迎關(guān)注億速云行業(yè)資訊頻道!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。