马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有账号?立即注册
x
- getVerify() {
- let that = this;
- axios({
- method: "GET",
- url: `http://192.168.7.61:3000/base/BaseApiService/createCaptchaCode?access_token=bjcenter`,
- responseType: "arraybuffer", //这个在请求头里必须加
- })
- .then((res) => {
- return (
- "data:image/png;base64," +
- btoa(
- new Uint8Array(res.data).reduce(
- (data, byte) => data + String.fromCharCode(byte),
- ""
- )
- )
- );
- })
- .then((res) => {
- that.verify = res;
- console.log("res", res);
- })
- .catch((e) => {
- console.log(e);
- });
- },
复制代码
免责声明:如果侵犯了您的权益,请联系站长,我们会及时删除侵权内容,谢谢合作! |