Web 接口
Body - 表示响应/请求的主体
抓取图像并将其显示在 <img> 标签中
源代码:
点击运行 »
<img class="my-image" src="https://wikipedia.org/static/images/project-logos/frwiki-1.5x.png"> <script> var myImage = document.querySelector('.my-image'); fetch('https://upload.wikimedia.org/wikipedia/commons/7/77/Delete_key1.jpg') .then(res => res.blob()) .then(res => { var objectURL = URL.createObjectURL(res); myImage.src = objectURL; }); </script>
运行结果:
点击运行 »