- 云开发存储的照片无法访问?
[图片] 发布版本 上传的照片突然无法访问下载,提示not find in server
2020-12-03 - 求助云开发 小程序端查询数据库_id 字段 返回数据是空的?权限设置已经最高
云数据库 小程序端查询 _id 字段 返回数据为空 数据权限设置:所有用户可读,仅创建者可读写。 目的:避免重复上传照片到云数据库,所以上传之前先查询数据库中是否存在该照片记录。 以照片本地路径为id进行判定,其中id值为图片本地路径,如下所示: _id :http://tmp/wxf66492f94c407eb9.o6zAJs29sK0dchD3WEnsWKfv_6G4.aD1VxnnpbCP4e32ff0afe7f1ff9298aa921943bc3cf5.png 微信开发者工具 1.03.2008270 调试库 2.12.1 UploadRecordsToDB(filePath) { var that=this; // 属性信息上传数据库 const db = wx.cloud.database(); const uploaderList = db.collection('uploaderList'); var data=that.data.uploadData; // 清空数据集 // uploaderList.where({ // _id:db.command.exists(true) // }).remove() uploaderList.where({ _id : filePath //写死成一个值 只能查询到一个记录;换成变量 查询为空 }).get().then(res => { console.log(filePath) console.log("数据库查询") console.info(res) if (!res.data.length) { // 没有存在同样的内容 插入新的记录 data["uploadTime"] = that.data.uploadTime; data["uploaderPerson"] = that.data.uploaderPerson; data["uploadFilePath"] = filePath; data["_id"]=filePath var loc=that.data.curLocation; console.info(new db.Geo.Point(loc[1], loc[0])); data["uploadLocation"] = new db.Geo.Point(loc[1], loc[0]), uploaderList.add({ data: data }) } }) },
2020-09-08 - webview 内嵌网页跳转小程序 指南针卡顿
救命嗷嗷 功能 :webview 页面, 显示主界面(内嵌的H5网页) ——>进入小程序 index界面, 调onDeviceMotionChange 监听方向 用作指南针 目前表现: ①初始化进入webview,跳转index指南针就卡顿,延迟,旋转错乱。 ②初始化进入index界面,指南针旋转平滑,可用; 跳转路由:H5——index wx.reLaunch() 开启监听放在onload(),onDeviceMotionChange()放在 onshow() [图片]
2019-02-22