前端之家收集整理的这篇文章主要介绍了
vue2滚动条加载更多数据实现代码,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
解析:
判断滚动条到底部,需要用到DOM的三个属性值,即scrollTop、clientHeight、scrollHeight。
scrollTop为滚动条在Y轴上的滚动距离。
clientHeight为内容可视区域的高度。
scrollHeight为内容可视区域的高度加上溢出(滚动)的距离。
从这个三个属性的介绍就可以看出来,滚动条到底部的条件即为scrollTop + clientHeight == scrollHeight。(兼容不同的浏览器)。
代码:
1.vue的实现
html:
解决','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','content': '秩序性支出V型从v','create_time': 1480296155000,'images': null
})
self.questionListData.push({
'id': 'B5C61D990F962570C34B8EE607CA1384','type': '0104','type_value': '
页面问题','description': '
回复的文本框和字体有点丑','content': '
回复的文本框和字体有点丑','create_time': 1480064620000,'images': null
})
self.questionListData.push({
'id': '279F9571CB8DC36F1DEA5C8773F1793C','type': '0103','type_value': '设计问题','description': '设计bug,不应该这样设计。','level': '0204','level_value': '非常高','content': '设计bug,不应该这样设计。你看。','create_time': 1480064114000,'images': null
})
self.questionListData.push({
'id': '80E365710CB9157DB24F08C8D2039473','description': '数据列表滚动条问题','level': '0202','level_value': '中','content': '数据列表在数据条数比较多的情况下无滚动条','create_time': 1480034606000,'images': null
})
console.log(self.questionListData)
}
})
},