- 公众号前端用vue开发的,使用await axios.post请在模拟器上没问题手机微信上运行出错?
async uploadImgToQiniu(file){ return new Promise(async (resolve,reject)=>{ // const axiosInstance = axios.create({withCredentials: false}); //withCredentials 禁止携带cookie,带cookie在七牛上有可能出现跨域问题 let url ="https://upload.qiniu.com" //这个上传的路径和调用接口获得的token值; let config ={ headers:{'Content-Type':'multipart/form-data'} } let imgList=[];//定义存储file的数组 if(file instanceof Array){ for(let i=0;i<file.length;i++){ imgList = [...imgList,file[i].file] } }else{ imgList =[...imgList,file.file] } let projectimg =[]; //遍历数组 for(let i=0;i<imgList.length;i++){ let formData = new FormData(); formData.append('token', this.token); //七牛需要的token,叫后台给,是七牛账号密码等组成的hash formData.set('file',imgList[i]);//这里要用set,如果用append,还是会出现一起上传的情况 // console.log(formData.get("file") let result = await axios.post(url,formData,config) // let result = request.post(url,formData,config) let images='http://qn.xxxx.com/'+result.data.key; //上传成功... (登录七牛账号,找到七牛给你的 URL地址) 和 data里面的key 拼接成图片下载地址 alert(images) projectimg.push(images) ; } resolve(projectimg) }) },
2020-07-19 - 为什么使用 wx.saveVideoToPhotosAlbum没有反应?
为什么使用 wx.saveVideoToPhotosAlbum没有反应,但是console.log部分有打印出数据 saveVideo(e){ var officlist = this.data.officlist, video = officlist[e]['video']; console.log(video); wx.saveVideoToPhotosAlbum({ filePath: video, success(res){ } }) },
2020-04-21 - 公众号号微信支付,在模拟器中无法发起
{errMsg: "chooseWXPay:没有此SDK或暂不支持此SDK模拟"}
2020-04-10 - 小程序闪屏严重爆闪啊求解决方案,官方可在?
小程序页面爆闪,求解决啊,没有任何报错,开发模式下没问题,发布后正式版就有问题 [图片]
2019-10-23 - 小程序为什么会爆闪求解?
小程序为什么会爆闪求解?
2019-10-22