小程序云函数中用group分组查询,只能查询20条,怎么解决?

小程序云函数中用group分组查询,只能查询20条,怎么解决?

用滚动条每次加10加载,希望对您有帮助。

fetchNickYMCount: function() {

db.collection(‘findingList‘).aggregate()

.group({

_id: {

userName: ‘$userName‘,

writeYM: ‘$writeYM‘,

},

t: $.sum(1)

})

.sort({

_id:-1

})

.skip(this.data.s)

.limit(this.data.l)

.end()



.then(res => {

this.setData({

result: this.data.result.concat(res.list)

})

// console.log(this.data.result)

})

},



lower:function(){

this.setData({

s:this.data.s+10,

l:this.data.l+10

})

this.fetchNickYMCount()

},

WXML:

<scroll-view scroll-y="true" lower-threshold="100"  bindscrolltolower="lower" style=‘height:878rpx;overflow-y: scroll;padding-top:1rpx;‘ >

<view class=‘history-table-wrap‘>

<view>

<view>

<view>填写人</view>

<view>填写年月</view>

<view>共计</view>

</view>

<view wx:for="{{result}}"  wx:key="{{index}}">

<view>{{item._id.userName}}</view>

<view>{{item._id.writeYM}}</view>

<view>{{item.t}}</view>

</view>

</view>

</view>

</scroll-view>

小程序云函数中用group分组查询,只能查询20条,怎么解决?

以上是小程序云函数中用group分组查询,只能查询20条,怎么解决?的全部内容。
THE END
分享
二维码
< <上一篇
下一篇>>