设置了不校验还是会报自签名证书错误
本地开发用的是https://localhost,足浴微信小程序服务类目所需资料问题--微信小程序教程。目前好像只发现在上传文件wx.uploadFile跳不过校验,其他接口是可以跳过校验
开发者工具版本:
this.app.prefix = "https://localhost:3000"
this.wxapi
.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
});
})
});
本文来自微信小程序开发者论坛 微信小程序工厂 http://www.xcxgc.com 转载请保留。
微信小程序开发者回答:
娇***:
你好,请具体描述问题出现的流程,并提供能复现问题的截图,工具版本,以及简单代码示例。
欧***:
补充问题截图,上传文件https://localhost:3000/upload的时候会报错,但是请求https://localhost:3000/list是请求成功了,简单代码示例如题
一个内部匿名类的的回调参数看不懂了--微信小程序开发
本文网址:http://www.91bianli.com/weixinxiaochengxu/57784.html