开发工具中 wx.uploadFile 未遵循不校验证书设定
开发者工具设置了 不校验安全域名、TLS 版本以及 HTTPS 证书
wx.uploadFile 依然会报 uploadFile:fail Error: self signed certificate
5 回复
我也遇到这样的问题,本地开发用的是https://localhost,设置了不校验还是会报自签名证书错误
.chooseImage({ count: 1 }) .then(res => { let { tempFilePaths } = res; this .wxapi.showLoading({ title: "图片上传中……" }); this .wxapi.uploadFile({ url: this .app.prefix + "/upload" , filePath: tempFilePaths[0], name: "file" + new Date(), }).then((res) => { this .wxapi.hideLoading(); let data = JSON.parse(res.data); this .setData({ photoUrl: this .app.prefix + data.picture, picture: data.picture }); }) }); |