都说的什么玩意,说个模棱两可逗别人玩呢? 解决方法就是用wx:if判断swiper是否需要渲染 如果里面是一个图片,但是src为null,就会报错,需要用wx:if判断,不能渲染没有src的图片
Cannot read property '$$' of undefinedTypeError: Cannot read property '$$' of undefined at HTMLElement._attached.wx.getPlatform._touchstartHandlerForDevtools
2023-02-08[图片][图片][图片][图片]图片是上传成功的,我想把获取的图片地址返回,用于展示的
uploadFile success 中怎么不能用setdata传值出去啊?[图片]啥都传不出去[图片][图片]
2022-05-04为啥我这个setdata的值出不去呢?
云存储上传图片路径无效?在开发工具模拟器中上传可以正常保存到云存储中,但是真机调试和体验版中一直失败,提示"cloud path is invalid",到底是哪里错了呢? [图片] 代码如下: savePics: function(photoSrcs) { var this_ = this; wx.cloud.init() const db = wx.cloud.database() var picids = []; wx.showLoading({ title: 'loading...', }) for (var src of photoSrcs) { //保存图片 wx.cloud.uploadFile({ cloudPath: 'diarypic/' + src.substring(util.indexOf(src, '.', 1) + 1), // 上传至云端的路径 filePath: src, // 小程序临时文件路径 success: res => { // 返回文件 ID picids.push(res.fileID) this_.setData({ photoSrcs: picids }) console.log(this_.data.photoSrcs.length + ' ' + photoSrcs.length) if (this_.data.photoSrcs.length == photoSrcs.length){ wx.hideLoading() } }, fail: err => { wx.showToast({ title: '谢特 出错了...', }) console.log(err.errMsg) } }) }; },
2022-05-04