- 我的小程序是在去年5月发布得,为什么不能用getUserInfo呢?怎么回事。
getuserinfo 不是说4月13前发布的不受影响吗? 为什么我的小程序获取不了用户信息? APPID:wxd6beb52c8602bff4
2021-04-27 - 云开发获取用户手机号失败,原来好好的,后来想重新登陆注册,获取失败?
[图片][图片] 云函数调试如上,获取手机号码的result结果为空。云函数调试报错replace 未定义,请问是解密出现问题吗?
2020-08-12 - #云开发#如何实现查询order集合中是否存在订单,存在则更新,不存在则创建?
如何实现查询order集合中是否存在订单,存在则更新,不存在则创建?[图片]
2020-08-07 - 小程序云开发中上传多图时,使用时间戳为文件命名时会有重复命名,怎么解决这个问题?
doUpload(filePath) { const that = this; var timestamp = (new Date()).valueOf(); const cloudPath = timestamp + '.png'; wx.cloud.uploadFile({ cloudPath, filePath }).then(res => { console.log('[上传文件] 成功:', res) const { params } = that.data; const { imgUrl } = params; imgUrl.push(res.fileID); params['imgUrl'] = imgUrl; that.setData({ imgUrl, }); }).catch(error => { console.error('[上传文件] 失败:', error); wx.showToast({ icon: 'none', title: '上传失败', duration: 1000 }) }) }, chooseImage: function () { const that = this; // 选择图片 wx.chooseImage({ count: 5, sizeType: ['compressed'], sourceType: ['album', 'camera'], success: function (res) { const filePath = res.tempFilePaths; //将选择的图片上传 filePath.forEach((path, _index) => { that.doUpload(path); }); const { tempFilePaths } = that.data; that.setData({ tempFilePaths: tempFilePaths.concat(filePath) }, () => { console.log(that.data.tempFilePaths) }) }, fail: e => { console.error(e) } }) },
2020-07-29