后端返回图片,前端处理

后端有时会向前端返回图片,而不是url,图片的打印结果类似JFIF形势的二进制,如下图


此时可以如此处理,便可以显示图片

1. vue可以这样写:

2. 普通代码中这样写:

let img = document.createElement('img');

img.src = window.URL.createObjectURL(new Blob([response], {type: "image/jpeg"}));

img.onload = function() {

      window.URL.revokeObjectURL(this.src);

}

body.appendChild(img);

你可能感兴趣的:(后端返回图片,前端处理)