怎么在Vue.js中使用bootstrap實現(xiàn)分頁和排序?相信很多沒有經(jīng)驗的人對此束手無策,為此本文總結(jié)了問題出現(xiàn)的原因和解決方法,通過這篇文章希望你能解決這個問題。
成都創(chuàng)新互聯(lián)專業(yè)為企業(yè)提供泗陽網(wǎng)站建設(shè)、泗陽做網(wǎng)站、泗陽網(wǎng)站設(shè)計、泗陽網(wǎng)站制作等企業(yè)網(wǎng)站建設(shè)、網(wǎng)頁設(shè)計與制作、泗陽企業(yè)網(wǎng)站模板建站服務(wù),十年泗陽做網(wǎng)站經(jīng)驗,不只是建網(wǎng)站,更提供有價值的思路和整體網(wǎng)絡(luò)服務(wù)。Vue的優(yōu)點Vue具體輕量級框架、簡單易學(xué)、雙向數(shù)據(jù)綁定、組件化、數(shù)據(jù)和結(jié)構(gòu)的分離、虛擬DOM、運行速度快等優(yōu)勢,Vue中頁面使用的是局部刷新,不用每次跳轉(zhuǎn)頁面都要請求所有數(shù)據(jù)和dom,可以大大提升訪問速度和用戶體驗。
語法
數(shù)據(jù)綁定 {{...}}或者v-model
{{dataItem.id}}
事件綁定 v-on
ID
循環(huán) v-for
判斷 v-if
首頁
過濾器 Vue.filter
//定義 Vue.filter( 'name' , function(value) { return value * .5 ; }); //使用{{dataItem.age | name}}
排序 orderBy
{{dataItem.id}} {{dataItem.name}} {{dataItem.age}}
html
數(shù)據(jù)
ID 姓名 年齡 {{dataItem.id}} {{dataItem.name}} {{dataItem.age}} 分頁首頁 上一頁 {{item}} ... 1&&item<=pageCount-1&&item>=showPagesStart&&item<=showPageEnd&&item<=pageCount" class="btn btn-default" v-on:click="showPage(item,$event)"> {{item}} showPageEnd+1" class="btn btn-default disabled"> ... {{item}} 下一頁 尾頁 {{pageCurrent}}/{{pageCount}}
javascript
//只能輸入正整數(shù)過濾器 Vue.filter('onlyNumeric', { // model -> view // 在更新 `` 元素之前格式化值 read: function (val) { return val; }, // view -> model // 在寫回數(shù)據(jù)之前格式化值 write: function (val, oldVal) { var number = +val.replace(/[^\d]/g, '') return isNaN(number) ? 1 : parseFloat(number.toFixed(2)) } }) //模擬獲取數(shù)據(jù) var getData=function(){ var result = []; for (var i = 0; i < 500; i++) { result[i] ={name:'test'+i,id:i,age:(Math.random()*100).toFixed()}; } return result; } var vue = new Vue({ el: "#test", //加載完成后執(zhí)行 ready:function(){ this.arrayDataAll = getData(); this.totalCount = this.arrayDataAll.length; this.showPage(this.pageCurrent, null, true); }, data: { //總項目數(shù) totalCount: 200, //分頁數(shù) arrPageSize:[10,20,30,40], //當(dāng)前分頁數(shù) pageCount: 20, //當(dāng)前頁面 pageCurrent: 1, //分頁大小 pagesize: 10, //顯示分頁按鈕數(shù) showPages: 11, //開始顯示的分頁按鈕 showPagesStart: 1, //結(jié)束顯示的分頁按鈕 showPageEnd: 100, //所有數(shù)據(jù) arrayDataAll:[], //分頁數(shù)據(jù) arrayData: [], //排序字段 sortparam:"", //排序方式 sorttype:1, }, methods: { //分頁方法 showPage: function (pageIndex, $event, forceRefresh) { if (pageIndex > 0) { if (pageIndex > this.pageCount) { pageIndex = this.pageCount; } //判斷數(shù)據(jù)是否需要更新 var currentPageCount = Math.ceil(this.totalCount / this.pagesize); if (currentPageCount != this.pageCount) { pageIndex = 1; this.pageCount = currentPageCount; } else if (this.pageCurrent == pageIndex && currentPageCount == this.pageCount && typeof (forceRefresh) == "undefined") { console.log("not refresh"); return; } //處理分頁點中樣式 var buttons = $("#pager").find("span"); for (var i = 0; i < buttons.length; i++) { if (buttons.eq(i).html() != pageIndex) { buttons.eq(i).removeClass("active"); } else { buttons.eq(i).addClass("active"); } } //從所有數(shù)據(jù)中取分頁數(shù)據(jù) var newPageInfo = []; for (var i = 0; i < this.pagesize; i++) { var index =i+(pageIndex-1)*this.pagesize; if(index>this.totalCount-1)break; newPageInfo[newPageInfo.length] = this.arrayDataAll[index]; } this.pageCurrent = pageIndex; this.arrayData = newPageInfo; //計算分頁按鈕數(shù)據(jù) if (this.pageCount > this.showPages) { if (pageIndex <= (this.showPages - 1) / 2) { this.showPagesStart = 1; this.showPageEnd = this.showPages - 1; console.log("showPage1") } else if (pageIndex >= this.pageCount - (this.showPages - 3) / 2) { this.showPagesStart = this.pageCount - this.showPages + 2; this.showPageEnd = this.pageCount; console.log("showPage2") } else { console.log("showPage3") this.showPagesStart = pageIndex - (this.showPages - 3) / 2; this.showPageEnd = pageIndex + (this.showPages - 3) / 2; } } } //排序 },sortBy: function (sortparam) { this.sortparam = sortparam; this.sorttype = this.sorttype == -1 ? 1 : -1; } } });
看完上述內(nèi)容,你們掌握怎么在Vue.js中使用bootstrap實現(xiàn)分頁和排序的方法了嗎?如果還想學(xué)到更多技能或想了解更多相關(guān)內(nèi)容,歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道,感謝各位的閱讀!