溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

Vue怎么實現(xiàn)Mysql數(shù)據(jù)庫數(shù)據(jù)的模糊查詢

發(fā)布時間:2022-03-03 15:01:30 來源:億速云 閱讀:389 作者:小新 欄目:開發(fā)技術(shù)

這篇文章主要介紹Vue怎么實現(xiàn)Mysql數(shù)據(jù)庫數(shù)據(jù)的模糊查詢,文中介紹的非常詳細(xì),具有一定的參考價值,感興趣的小伙伴們一定要看完!

1.需求

輸入框中輸入數(shù)據(jù),根據(jù)輸入的結(jié)果模糊搜索數(shù)據(jù)庫對應(yīng)內(nèi)容,實現(xiàn)模糊查詢。

2.實現(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ù):

Vue怎么實現(xiàn)Mysql數(shù)據(jù)庫數(shù)據(jù)的模糊查詢

SearchResult.vue代碼

Vue怎么實現(xiàn)Mysql數(shù)據(jù)庫數(shù)據(jù)的模糊查詢

created函數(shù)中獲取輸入框傳來的keyWord

getData(offset,limit)函數(shù)使用axios向后端根據(jù)keyWord查詢數(shù)據(jù),其中offsetlimit是分頁查詢的參數(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)容。

3.結(jié)果

Vue怎么實現(xiàn)Mysql數(shù)據(jù)庫數(shù)據(jù)的模糊查詢

以上是“Vue怎么實現(xiàn)Mysql數(shù)據(jù)庫數(shù)據(jù)的模糊查詢”這篇文章的所有內(nèi)容,感謝各位的閱讀!希望分享的內(nèi)容對大家有幫助,更多相關(guān)知識,歡迎關(guān)注億速云行業(yè)資訊頻道!

向AI問一下細(xì)節(jié)

免責(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)容。

AI