提交 a848e36a 编写于 作者: d-u-a's avatar d-u-a

fix(unicloud-db组件): 修复字节小程序不设置@load属性时报错的问题;优化isEnded

上级 1d3f7ba5
......@@ -208,7 +208,7 @@ export default {
// #ifdef MP-TOUTIAO
let changeName
const events = this.$scope.dataset.eventOpts
const events = this.$scope.dataset.eventOpts || []
for (var i = 0; i < events.length; i++) {
const event = events[i]
if (event[0].includes('^load')) {
......@@ -416,7 +416,7 @@ export default {
data,
count
} = res.result
this._isEnded = data.length < this.pageSize
this._isEnded = count != undefined ? (this.paginationInternal.current * this.paginationInternal.size >= count) : (data.length < this.pageSize)
this.hasMore = !this._isEnded
const data2 = this.getone ? (data.length ? data[0] : undefined) : data
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册