• axios获取图片


     vue+tp5前后端分离项目,使用tp5验证码类,

    return response($content, 200, ['Content-Length' => strlen($content)])->contentType('image/png');//最后返回的是png图片

    后台直接返回的是image文件格式,前端需要处理一下

    方法一:

    axios.get('/captcha', {
      params: param,
      responseType: 'arraybuffer'
    })

    .then(response => new Buffer(response.data, 'binary').toString('base64'))

    .then(data => {
      $('#img').attr('src', data);
    });

    // 浏览器中好像没有Buffer,改成这样:
    axios.get('/captcha', {
      params: param,
      responseType: 'arraybuffer'
    })
    .then(response => {
      return 'data:image/png;base64,' + btoa(
        new Uint8Array(response.data).reduce((data, byte) => data + String.fromCharCode(byte), '')
      );
    }).then(data => {
    ...
    })

     原文链接https://segmentfault.com/q/1010000012407559

    方法二(更为简单):

    html部分

    <img :src="img" alt="验证码" title="点击换一张" @click="getimg"/>
     
    js部分
    methods: {
      getimg () {
        this.img = this.img + '?num = ' + Math.random();//给图片地址配一个无用的随机数
      }
    }
     
  • 相关阅读:
    Decompiling XAPK Files
    ps4双手柄inputManager设置
    游客须知
    页面类
    Temp
    Web AppDomain
    委托和事件
    动态执行js
    遍历对象属性,成员,方法的方法
    用Windows操作系统的人有时会遇到这样的错误信息:
  • 原文地址:https://www.cnblogs.com/yangfei123/p/9776370.html
Copyright © 2020-2023  润新知