- 云开发 条件查询
- 需求的场景描述(希望解决的问题) 这个应该是怎么个写法? [图片] - 希望提供的能力 [图片] 我是这样写的 有没有老哥有更好的方法?
2019-04-26 - 调用云函数向数据库中添加数据
- 需求的场景描述(希望解决的问题) 求解:日志上显示调用成功了 为什么数据库没有添加数据 代码: - 希望提供的能力 [图片] [图片] [图片] [图片]
2019-04-17 - 初入云开发 异步的问题
- 需求的场景描述(希望解决的问题)下面是原来的代码 自己试着捣鼓 async await 无果 特来求大神助 - 希望提供的能力 doUpload: function() { // 选择图片 var that = this; const filePath = that.data.images, var imgFileId = []; var cloudPath = []; filePath.forEach((item, i) => { cloudPath.push(util.formatTimestamp(new Date()) + filePath[i].match(/\.[^.]+?$/)[0]) }) filePath.forEach((item, i) => { wx.cloud.uploadFile({ cloudPath: cloudPath[i], filePath: item, // 文件路径 }).then(res => { console.log(res) imgFileId.push(res.fileID) console.log(imgFileId) }) }) return imgFileId; }, submitForm: function(e) { console.log(e) var that = this; let imgFileId = that.doUpload() console.log(imgFileId) //添加操作 let pudate = new Date(); const db = wx.cloud.database() db.collection('forum').add({ data: { content: e.detail.value.textarea, pubdate: util.formatTime(pudate), img: imgFileId, title: e.detail.value.userTitle, address: that.data.addressObj } }).then(res => { wx.showToast({ title: "添加成功" }) }) },
2019-04-09