- 云开发更新数据库无法更新数据?
setSummary: function(id,summary) { console.log(id, summary) if (!wx.cloud) { console.error('请使用 2.2.3 或以上的基础库以使用云能力') } else { wx.cloud.init({ }) } // this.getData() const db = wx.cloud.database() let that = this db.collection('m').doc(that.data._id).update({ data: { summary: summary }, success:function(res){ }, fail:function(res){ } } ) },
2019-11-06 - 云开发数据库分页获取数据存在重复数据?
在云开发中创建数据库,分页获取数据时候存在重复数据 db.collection(db_name).where({ }).skip(this.data.index) .limit(10) .get({ // 成功回调 success: function (res) { // do-sth console.log(res) that.data.dataAry = that.data.dataAry.concat(res.data) that.setData({ dataAry: that.data.dataAry }) }, fail: err => { // do-sth console.log("d") } })
2019-11-05 - 审核通过后,在微信搜索没有搜索到?
小程序上线了,微信也是最新版本,但在微信中小程序搜索不到,这个是什么原因导致的? [图片]
2019-10-21 - 小程序发布以后没有搜索到?
小程序上线了,微信也是最新版本,但在微信中小程序搜索不到,这个是什么原因导致的? [图片]
2019-10-21 - 如何把云开发中存储的数据导入到另外一个小程序中
- 需求的场景描述(希望解决的问题) - 希望提供的能力 我之前开发临时创建了一个微信的小程序ID,也把App需要的图都导入这个小程序ID里面了,现在转到线上小程序ID了,这会发现同样也要把图导入才可以,要是可以转移就好了
2019-05-20