- 求助:wx.createSelectorQuery()开发环境真机测试异常?但开发环境和真机运行正常
开发环境id:yzwdj appid=wx9f66c7f0543a6f00 问题现象: 1 微信开发者工具.exec 运行正常 2 真机环境运行正常 3 微信开发者工具真机测试异常,始终报错误截图: [图片] 其中:createView不在什么环境产生的,我的代码中没有这个属性 代码片段: let that = this const query = wx.createSelectorQuery() query.select('#cut-box') .fields({ node: true, size: true }) .exec((res) => { const canvas = res[0].node const ctx = canvas.getContext('2d') const dpr = wx.getSystemInfoSync().pixelRatio canvas.width = res[0].width * dpr canvas.height = res[0].height * dpr ctx.scale(dpr, dpr); let img = canvas.createImage(); //创建img对象 img.src = that.data.upload_local_url 微信:13883166466
2021-01-11 - 紧急求助: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 - 个人微信号申请的云存储,如何让其它同事也能访问云存储并上传文件资料?
如何让我的其它同事也能访问到云存储?例如上传、下载资料文件?138-831-66466
2020-08-28