您好,登錄后才能下訂單哦!
這篇文章給大家分享的是有關(guān)Vue+ElementUI如何實(shí)現(xiàn)分頁功能查詢mysql數(shù)據(jù)的內(nèi)容。小編覺得挺實(shí)用的,因此分享給大家做個(gè)參考,一起跟隨小編過來看看吧。
當(dāng)數(shù)據(jù)庫中數(shù)據(jù)比較多時(shí),就要每次只查詢一部分來緩解服務(wù)器和頁面的壓力。這里使用elementui
的 Pagination 分頁 組件,配合mysql
的limit
語句,實(shí)現(xiàn)分頁查詢mysql數(shù)據(jù)。
下圖是最基本的分頁樣式:
當(dāng)然需要引入對應(yīng)的事件,來實(shí)現(xiàn)頁面改變就查詢數(shù)據(jù)庫。
<el-pagination background layout="prev, pager, next" :page-size="8" :total="total" :current-page="pageNum" @current-change="handleCurrentChange"> </el-pagination>
data
:初始化總數(shù)據(jù)條數(shù)(total
)為1,pageNum
也就是當(dāng)前頁數(shù)為第一頁。
參數(shù)為offset
,limit
,向后端請求數(shù)據(jù),待會兒解釋。這里使用了qs序列化參數(shù)??梢詤⒖嘉业牧硪黄┛停?code>Vue + ElementUI + Viewer翻頁后圖片無法預(yù)覽 Vue父子組件異步通信問題 里面解釋了qs的功能。
getData(offset,limit){ this.axios.post('/php/select.php', qs.stringify({ offset: offset, limit: limit, type: '失物招領(lǐng)' }), { headers: { 'Content-Type': 'application/x-www-form-urlencoded' } }).then((res) => { if(res.data === 0){ this.total = 0; this.list = []; return; } this.total = res.data.total this.list = res.data.data this.loading = false }).catch((err) => { this.$message.error(err) }) }
created () { this.getData(0,8); },
頁面改變觸發(fā)handleCurrentChange()
函數(shù),即點(diǎn)擊了翻頁,其中val參數(shù)就是當(dāng)前頁數(shù),使用新的參數(shù),
調(diào)用getData實(shí)現(xiàn)查詢不同頁面的數(shù)據(jù):
handleCurrentChange(val){ this.list = [] //清空上一頁數(shù)據(jù) this.getData((val-1)*8,8); }
下面是后端數(shù)據(jù):php + mysql
現(xiàn)在數(shù)據(jù)表中總共有10條數(shù)據(jù):
前端getData
請求的select.php
文件
select.php:
<?php $servername = "localhost"; $username = "用戶名"; $password = "密碼"; $dbname = "數(shù)據(jù)庫名稱"; // 創(chuàng)建連接 $conn = new mysqli($servername, $username, $password, $dbname); // Check connection if ($conn->connect_error) { die("連接失敗: " . $conn->connect_error); } $type = $_POST['type']; //獲取前端的參數(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 type='$type' order by id desc LIMIT $limit OFFSET $offset"; $result = $conn->query($sql); $sqlGetCount = "SELECT COUNT(*) cnt FROM posts where type='$type'"; $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 ); ?>
這里使用了mysql
的limit
實(shí)現(xiàn)一次只查詢一部分?jǐn)?shù)據(jù),前端傳來了參數(shù)offset
和limit
。
sql語句:
"SELECT * FROM posts where type='$type' order by id desc LIMIT $limit OFFSET $offset"
這里的 LIMIT $limit OFFSET $offset
的意思就是從 $offest
的值開始,查詢 $limit
條數(shù)據(jù)。
例如 $limit = 8, $offest = 0:表示查詢數(shù)據(jù)庫的前8條數(shù)據(jù),從0開始(不包含0,mysql索引從0開始),查詢8條,也就是1~8條數(shù)據(jù)。
當(dāng)我點(diǎn)擊第二頁時(shí):觸發(fā)handleCurrentChange()
函數(shù):
此時(shí)參數(shù)val=2
,則offest = 8
, limit = 8
。
就會查詢第9~17條數(shù)據(jù),如果沒有17條數(shù)據(jù),也會返回查詢到9條后的所有數(shù)據(jù)。例如目前我數(shù)據(jù)庫就10條數(shù)據(jù),那么返回第9條和第10條兩條數(shù)據(jù)。
同時(shí)select.php中頁返回了總數(shù)據(jù)條數(shù)total:
SELECT COUNT(*) cnt FROM posts where type='$type'
前端頁面獲取到total
值后賦值給this.total
(綁定了Pagination的total
屬性,也就是總數(shù)據(jù)條數(shù))。Pagination
根據(jù):page-size="8"
屬性就會將數(shù)據(jù)自動分頁。例如后端返回的total為10,則分成兩頁。
頁面加載完成:因?yàn)槲沂歉鶕?jù)id逆序查詢,所以獲取了第3~10條(共8條)數(shù)據(jù)。
點(diǎn)擊第二頁或者翻頁按鈕:獲取第1、2條數(shù)據(jù)。
注意:你的limit
參數(shù)一定要和Pagination
的page-size
屬性一致,也就時(shí)一次查詢一頁數(shù)據(jù)。而offset
就是當(dāng)前的頁數(shù)。
感謝各位的閱讀!關(guān)于“Vue+ElementUI如何實(shí)現(xiàn)分頁功能查詢mysql數(shù)據(jù)”這篇文章就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,讓大家可以學(xué)到更多知識,如果覺得文章不錯(cuò),可以把它分享出去讓更多的人看到吧!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。