📜  jfif 转 jpeg javascript 代码示例

📅  最后修改于: 2022-03-11 15:01:17.500000             🧑  作者: Mango

代码示例2
axios.get(API_URL, { responseType: "blob" }).then(resp => {
  const url = URL.createObjectURL(resp.data);
  document.getElementById("preview").src = url;
});