- 上传文件接口打开调试模式才可以正常上传,关闭调试模式就没有成功
小程序开发工具上都可以正常上传图片,一预览或者上传代码体验,就不行了
-
async photo() { const size = this .pictures.length; if (size >= 4) { await Tips.alert( '最多选择四张图片' ); return ; } const param = { count: 4, sizeType: [ 'compressed' ] }; const tempFilePaths = await WxUtils.chooseImage(param, this .maxSize); // this.Thumbnail = tempFilePaths; // var tempFilePaths = res.tempFilePaths; this .FilePaths = []; const imglista = []; wx.uploadFile({ url: 'url' , //仅为示例,非真实的接口地址 filePath: tempFilePaths[0], name: 'file' , formData: { 'user' : 'test' }, success: (res) => { // Tips.alert(res.data); var data = JSON.parse(res.data); var imgTitle = data.Data.FileName; var SPath = data.Data.ServerPath; this .FilePaths.push(SPath); this .imglist.push(imgTitle); // console.log(this.imglist); const pictures = this .FilePaths.map(item => { return { temp: true , url: item } }); this .pictures = this .pictures.concat(pictures); if ( this .pictures.length == 4) { this .photos = false ; } this .$apply(); // Tips.modal(data.Message); } // , fail: (res) => { // Tips.alert(res); // }, complete: (res) => { // Tips.alert(res); // } }); } |
-
-
麻烦提供一下出现问题的机型和微信版本,并且给个相关的代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html),我们定位下问题
请问解决了么,我也遇到了这个问题!而且我的问题是oppo手机可以 iPhone手机出现这个问题
原来是https或者自己写错地址了