- 云函数写md5加密?(已解决)
[图片] index.js? [sm]:37 Error: cloud.callFunction:fail Error: errCode: -504002 functions execute fail | errMsg: Runtime.ImportModuleError: Error: Cannot find module '../getsetzcm/md5.js' 请问错在哪里么?谢谢。 在需要使用到的云函数安装npm install md5..... --------------
2022-11-22 - 微信小程序怎么在一个wx:for循环中遍历两个长度相同内容不同数组?
微信小程序怎么在一个wx:for循环中遍历两个长度相同内容不同数组?wx:for遍历数组的时候是用{{list1}},值是{{item}},另外一个数组直接用遍历的index取,比如{{list2[index].name}} [图片] 2个是解决了,如果有3个,4个的话,请问如何解决??
2020-10-01 - setData不继续运行了?
自己解决了 this指向问题。 =============================================== //上传视频 uploadVideo(){ wx.chooseVideo({ sourceType: ['album','camera'], maxDuration: 60,//视频最长时长单位秒 camera: 'back', success(res) { console.log("选择视频成功",res.tempFilePath) wx.cloud.uploadFile({ cloudPath:Date.parse(new Date())/1000+'img.mp4', //上传路径 filePath:res.tempFilePath, //小程序临时文件路径 success:res=>{ //返回文件ID console.log("上传视频成功",res.fileID) this.setData({ //这段代码不继续运行了?为什么呢?! 可是上传图片这样写却没问题,能够正常接收?! videoUrl:res.fileID }) }, fail:console.error }) } }) }, [图片]
2020-09-29