📅  最后修改于: 2022-03-11 15:04:04.255000             🧑  作者: Mango
fetch("url-to-image")
.then(function(response) {
return response.blob()
})
.then(function(blob) {
// here the image is a blob
});