- wx.cloud.getTempFileURL换取真实链接,数据库会重复创建一个相同的表什么原因?
wx.cloud.getTempFileURL成功获取到数组https链接后,后台会重复生成一个没有picurl的表 var pathArr = []; var formData = {}; if (this.data.tempPath.length) { this.data.tempPath.forEach((item, idx) => { var title = res.detail.value.title; var file = common.getMyId() var filename = common.getMyFile(item) this.uploadFile(filename, item) }) } else { this.pushCloud(formData) } }, // //上传图像到云存储 uploadFile(filename, path) { wx.cloud.uploadFile({ cloudPath: filename, filePath: path }).then(res => { this.getImgUrl(res.fileID) }) }, //获取云存储里的图片url getImgUrl(fileID) { wx.cloud.getTempFileURL({ fileList: [fileID], }).then(res => { pathArr.push(res.fileList[0].tempFileURL) if (pathArr.length == this.data.tempPath.length) { formData.picurl = pathArr } this.pushCloud(formData) }) }, 帮忙看下哪里错了,怎么改
2022-06-30 - 云函数中怎么添加判断字段是否存在而不影响原来的查询数据?
return await db.collection("wz")orderBy("posttime","desc").where({ where, zhushi:_.exists(true) }).get(); } 在做分类导航模块,我在.where里增加添加判断字段条件zhushi:_.exists(true),发现影响了原来的结果,点击对应的导航不显示
2022-06-24 - 表单提交input云开发数据库接收到的都是string类型,怎么才能收到的是number类型
表单提交input[图片][图片]云开发数据库接收到的是string类型[图片],怎么才能收到的是number类型
2021-12-10