您好,登錄后才能下訂單哦!
這篇文章主要介紹“vue2怎么實現滾動條加載更多數據”,在日常操作中,相信很多人在vue2怎么實現滾動條加載更多數據問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”vue2怎么實現滾動條加載更多數據”的疑惑有所幫助!接下來,請跟著小編一起來學習吧!
解析:
判斷滾動條到底部,需要用到DOM的三個屬性值,即scrollTop、clientHeight、scrollHeight。
scrollTop為滾動條在Y軸上的滾動距離。
clientHeight為內容可視區域的高度。
scrollHeight為內容可視區域的高度加上溢出(滾動)的距離。
從這個三個屬性的介紹就可以看出來,滾動條到底部的條件即為scrollTop + clientHeight == scrollHeight。(兼容不同的瀏覽器)。
代碼:
1.vue的實現
html:
<div class="questionList-content-list"> <ul> <li v-for="item in questionListData" @click="goDetail(item.id)"> {{item.create_time}} [{{item.level_value}}] {{item.description}} {{item.status_value}} </li> </ul> </div>
js:
created () { var self = this $(window).scroll(function () { let scrollTop = $(this).scrollTop() let scrollHeight = $(document).height() let windowHeight = $(this).height() if (scrollTop + windowHeight === scrollHeight) { self.questionListData.push({ 'id': '62564AED8A4FA7CCDBFBD0F9A11C97A8', 'type': '0102', 'type_value': '數據問題', 'description': '撒的劃分空間撒電話費看見愛上對方見客戶速度快解放哈薩克接電話發生的劃分空間是的哈副科級哈師大空間劃分可接受的后方可摳腳大漢房間卡收到貨放假多少', 'status': '0', 'status_value': '未解決', 'level': '0203', 'level_value': '高', 'content': '過好幾個號', 'userid': 'lxzx_hdsx', 'create_time': 1480296174000, 'images': null }) self.questionListData.push({ 'id': 'D679611152737E675984D7681BC94F16', 'type': '0101', 'type_value': '需求問題', 'description': 'a阿斯頓發生豐盛的范德薩范德薩發十多個非官方阿道夫葛根粉v跟下載v', 'status': '0', 'status_value': '未解決', 'level': '0203', 'level_value': '高', 'content': '秩序性支出V型從v', 'userid': 'lxzx_hdsx', 'create_time': 1480296155000, 'images': null }) self.questionListData.push({ 'id': 'B5C61D990F962570C34B8EE607CA1384', 'type': '0104', 'type_value': '頁面問題', 'description': '回復的文本框和字體有點丑', 'status': '0', 'status_value': '未解決', 'level': '0203', 'level_value': '高', 'content': '回復的文本框和字體有點丑', 'userid': 'lxzx_hdsx', 'create_time': 1480064620000, 'images': null }) self.questionListData.push({ 'id': '279F9571CB8DC36F1DEA5C8773F1793C', 'type': '0103', 'type_value': '設計問題', 'description': '設計bug,不應該這樣設計。', 'status': '0', 'status_value': '未解決', 'level': '0204', 'level_value': '非常高', 'content': '設計bug,不應該這樣設計。你看。', 'userid': 'lxzx_hdsx', 'create_time': 1480064114000, 'images': null }) self.questionListData.push({ 'id': '80E365710CB9157DB24F08C8D2039473', 'type': '0102', 'type_value': '數據問題', 'description': '數據列表滾動條問題', 'status': '0', 'status_value': '未解決', 'level': '0202', 'level_value': '中', 'content': '數據列表在數據條數比較多的情況下無滾動條', 'userid': 'lxzx_hdsx', 'create_time': 1480034606000, 'images': null }) console.log(self.questionListData) } }) },
因為vue2 實現了m-v雙向綁定,所以這里直接改變for循環數據源即可實現列表的數據刷新;
2: 普通js的實現
html:
<div id="content" class="questionList-content-list"> <ul> <li class="list"> <span測試1</span> <span>測試2</span> <span>測試3</span> <span>測試4</span> <span>測試5</span> <span>測試6</span> <span>測試7</span> <span>測試8</span> <span>測試9</span> <span>測試10</span> <span>測試11</span> </li> </ul> </div>
js:
var html = '' //距下邊界長度/單位px $(window).scroll(function () { var scrollTop = $(this).scrollTop(); var scrollHeight = $(document).height(); var windowHeight = $(this).height(); if (scrollTop + windowHeight == scrollHeight) { for(let i=0;i<10;i++){ html += '<li>Page: ' + i + ', Data Index: ' + i + ' </li>' } $('#content ul').append(html); } });
到此,關于“vue2怎么實現滾動條加載更多數據”的學習就結束了,希望能夠解決大家的疑惑。理論與實踐的搭配能更好的幫助大家學習,快去試試吧!若想繼續學習更多相關知識,請繼續關注億速云網站,小編會繼續努力為大家帶來更多實用的文章!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。