没有官方支持吗
公众号前端用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兄弟,解决没,这到底是微信的内核问题还是咋回事儿啊,我模拟器怎么运行都没问题,到了真机就闪瞎了
安卓手机出现闪烁情况 部分手机必现 华为小米等[图片] 使用微信上传日志 微信号 : cq9498 上传时间 : 2019-10-23 10:17 还有很多华为手机也出现这种闪烁情况 恳请官方第一时间给个回复 谢谢 代码片段:https://developers.weixin.qq.com/s/5SrS2kmK7Qcf
2019-10-23兄弟你解决这个问题了没
微信小程序闪屏严重微信小程序出现很严重的闪屏,而且每个页面都可能出现,找不到原因。 看了社区,有很多人存在跟我一样的闪屏问题。 但是都没有解决办法,因为每个页面都有可能出现,无法提供具体的代码片段。
2019-10-22[图片]
小程序为什么会爆闪求解?小程序为什么会爆闪求解?
2019-10-22