问题模块 | 框架类型 | 问题类型 | 终端类型 | AppID | 基础库版本 |
---|---|---|---|---|---|
云开发 | 小程序 | Bug | 客户端 | wxba0881da5ae1eb51 | 2.7.0 |
- 场景描述
使用了wepy框架,1.7.2版本
手机预览的时候,collection.get()的success和fail都进不去
求大佬帮忙解答一下,谢谢
- bug表现
- 预期表现
- 路径
pages/fitArticle/list - demo
wx.cloud.init({ env: 'he-fd1c48' }) this .globalData.testDB = wx.cloud.database({ env: 'he-fd1c48' }) let self = this let articles = self.$parent.globalData.testDB.collection( 'articles' ) let start = (self.currentPage - 1) * 20 let end = self.currentPage * 20 - 1 console.log( '走到这没' ) articles .where({ index: _.gte(start).and(_.lte(end)) }) .orderBy( 'index' , 'asc' ) .get({ success(res) { console.log( '成功啦' ) console.log(res) }, fail(err) { console.log( '失败' ) console.log(err) } }) |