axios输出图片显示
- 获取response并创建一个静态的DOMString
this.axios.get(url,{
responseType: 'blob'
}).then(res) {
var src = window.URL.createObjectURL(res.data);
//src 就是一个可以显示图片的相对路径。因为window.URL.crateObjectURL(blob)已经进行了转换
} - 将src绑定在页面img标签的src属性上。
you have to be an expert of something, then you can find the way to succeed!