粘代码出来,参数请求错误
微信网页 云开发 数据库拒绝请求?H5微信网页云开发,用了get()方法 const {data} = await db.collection('a-data').doc(_id).get() 刚打开网页登录后,请求数据库数据正常 不过就一两分钟后就报这玩意了 [图片] 重新登录后过一会就又报了 试了各种办法没用,无解 请大佬们指点迷津,万分感谢!
2021-03-02你好,已经在着手排查,有消息第一时间同步
紧急求助:wx.clound.uploadfile 开发环境正常,真机运行报错?开发环境:yzwdj 业主我当家: appid=wx9f66c7f0543a6f00 生产环境已上线运行几个月,前两天出现不能上传本地文件至云存储,通过跟踪排查分析,发现是wx.cloud.uploadfile云函数报错: 报错内容:fail url not in domain list;at wx.cloud.uploadfile api 上传本地文件名为:wxfile://tmp????????.png 该程序过去在真机运行都一切正常,现在在微信开发者工具上调试也正常,但上传本地 文件格式为:http://tmp??????????.png 发现开发调试环境和真机运行环境在本地文件名格式上有差异,请问该如何解决? 程序片段代码: wx.showLoading({ title: '封面上传中...', }) wx.cloud.uploadFile({ cloudPath: 'owner_sound/share/' + that.data.news_id + '/share.jpg', filePath: that.data.upload_local_url, // 本地文件路径 name: 'share', success: res => { var m_fileID=res.fileID wx.hideLoading({ success: (res) => { that.getImgUrl(m_fileID) }, }) }, fail: err => { that.setData({ publisher_change: false, }) wx.hideLoading({ success: (res) => { wx.showModal({ title: '封面图片上传失败!', content: err.errMsg, showCancel: false, }) }, }) } }) 真机报错显示: [图片] 微信:13883166466,谢谢!
2021-01-11收到,我们看下
紧急wx.cloud.uploadFile 返回 fail url not in domain?过去代码运行正常,最近两天发现所有的wx.cloud.uploadFile 运行都不正常 该函数在开发环境和真机测试环境都正常,但在真机运行环境下出现错误: fail url not in domain list? 代码片段: wx.cloud.uploadFile({ cloudPath: 'owner_sound/share/' + that.data.news_id + '/share.jpg', filePath: that.data.upload_local_url, // 本地文件路径 success: res => { that.getImgUrl(res.fileID) }, fail: err => { that.setData({ publisher_change: false, }) wx.hideLoading({ success: (res) => { wx.showModal({ title: '封面图片上传失败!', content: err.errMsg, showCancel: false, }) }, }) } })
2021-01-09麻烦提供一下云开发环境 ID 以及 APPid
wx.cloud.uploadFile 这个API一直都正常使用,突然就报错了?cloud.uploadFile:fail uploadFile:fail url not in domain list;at cloud.uploadFile api 但本地测试是正常,一发布上线就报错,为什么
2021-01-09提供一下云开发环境 ID 以及 APP ID
wx.cloud.uploadFile真机测试返回fail url not in domain?在小程序中使用wx.cloud.uploadFile函数上传图片,在开发工具中没有问题,在真机开发调试模式下也没有问题。 但是在真机上不打开调试模式就返回fail url not in domain? 这里直接使用的云开发,文档也说在云开发模式下无须配置域名,请问这种情况怎么处理?
2021-01-09const _ = db.command db.collection('todo').where(_.and([ { progress: _.gt(50) }, { tags: 'cloud' } ])).get() 尝试一下and引起来
云开发语句查询出错?[图片]不应该查出来的数据给查出来了,大佬看看语句哪里有问题
2020-12-08具体表现是什么,出错的日志截图给一下
云开发事务用事务操作数据库,当有运行错误时,[图片]这段更新操作无法回滚
2020-11-24真机调试一下,看是不是网络权限问题
插件上可以使用云存储的图片么?模拟器上可以,真机不显示插件上可以使用云存储的图片么?模拟器上可以,真机不显示
2020-11-24给一下用户的机型、微信版本、SDK版本等相关信息
云开发获取开放数据,cloudID获取不到?使用云开大获取用户手机号,有个用户cloudid获取不到,有大佬遇到遇到过这种情况吗? 获取到的数据如下 { "type":"getphonenumber", "timeStamp":70013, "target":{ "id":"", "offsetLeft":0, "offsetTop":0, "dataset":{ } }, "currentTarget":{ "id":"", "offsetLeft":0, "offsetTop":0, "dataset":{ } }, "mark":{ }, "detail":{ "errMsg":"getPhoneNumber:ok", "encryptedData":"wYcfnRFv7s71q79ivGg427wc3tqpnhejsChdWovO9Mb9MvVBU+aW7RUmp9O0a3eofwUVrhfWEBf1UubYonffw90h9iZ8iOzWyATqrzw2y1oZzGgPHfdtwEtuOEDEOZtGfZyPnI7cfNcf9SZHeT4vqeKD/8RZtkzOOz4YN/nXtVHPKSfrbOGu7wV4rIKeDyDOFw==", "iv":"sZWyuXk9Jn4T9SRnYKhA==" }, "mut":false } 获取数据方法 getUserTel: function (event) { log.info("用户获取手机号 event==" + JSON.stringify(event)) if (event.detail.errMsg == "getPhoneNumber:ok") { wx.showLoading({ title: '正在获取', mask: true }) wx.cloud.callFunction({ name: "user_manage", data: { weRunData: wx.cloud.CloudID ? wx.cloud.CloudID(event.detail.cloudID) : "", req_type: "up_user_tel" } }).then(res => { if (res.errMsg == config.ok) { if (res.result.code == 200) { wx.showToast({ title: '获取成功', icon: "success" }) userUtils.setDataBykey(user.TEL, res.result.data.tel) this.setData( { tel: res.result.data.tel } ) } else { wx.showToast({ title: res.result.msg, icon: "none" }) } } else { wx.showToast({ title: '获取失败', icon: "none" }) } }).catch(errro => { wx.showToast({ title: '获取失败', icon: "none" }) }) } else { wx.showToast({ title: event.detail.errMsg, icon: "none" }) } }, 用户信息: [图片] appid:wx71457898c2b28419
2020-11-24左上角点击返回首页,其实是重新加载小程序。 全局变量和路由是无效的,这种情况下只能用缓存localstorage来做。
用户打开分享的小程序,点击右上角的“返回首页”,开发者能给首页传参数吗?用户打开分享的小程序,点击右上角的“返回首页”,开发者能给首页传参数吗? ====================== 统一回复:感谢各位大佬的解惑
2020-08-29