获得过 0 次赞
回答过的问题获得 0 次赞
分享过的文章/案例获得 0 次赞
评论与回复获得 0 次赞
请问解决了吗 我也遇到了这个问题
aggregate( )在小程序手机预览和IDE模拟器表现不一致?下面这段代码在PC模拟器上可以获得数据,而在手机预览却获得空的数据(list是空的): errMsg: "collection.aggregate:ok" list: [] 代码: db.collection('post') .aggregate() .skip(0) .limit(LIMIT) .sort({ updatedAt: -1 }) .project({ _id: 1, _openid: 1, comments: 1, content: 1, follows: 1, reads: 1, released: 1, subject: 1, updatedAt: $.dateToString({ date: '$updatedAt', format: '%m %d, %Y %H:%M:%S', //"month day, year hours:minutes:seconds" timezone: 'Asia/Shanghai' }), userInfo: 1 }) .end( ) .then(res => { console.log('res', res) }) .catch(err => { console.log('aggregated err', err) })
2022-05-23