博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
[Javascript] Create an Image with JavaScript Using Fetch and URL.createObjectURL
阅读量:4983 次
发布时间:2019-06-12

本文共 677 字,大约阅读时间需要 2 分钟。

Most developers are familiar with using img tags and assigning the src inside of HTML. It is also possible to only use JavaScript to fetch the image from another site, create a local url, and assign that to an img tag that you create. This lesson walks you through the process of fetching an image from a placeholder site and displaying it using only JavaScript.

 

;(async function() {  const response = await fetch(`https://placekitten.com/320/240`)  const blob = await response.blob()  const url = URL.createObjectURL(blob)  const image = new Image()  image.src = url  document.getElementById("app").appendChild(image)})()

 

转载于:https://www.cnblogs.com/Answer1215/p/11315777.html

你可能感兴趣的文章
WCF入门简单教程(图文) VS2010版
查看>>
jQuery EasyUI API 中文文档 - ComboBox组合框
查看>>
“ORA-12545: 因目标主机或对象不存在,连接失败”怎么办?
查看>>
DataList数据绑定的一个简单代码
查看>>
新闻页面的链接可以简单地实现了
查看>>
Internal关键字
查看>>
HIS项目框架搭建流程
查看>>
Access Control
查看>>
使用mpvue开发小程序教程(一)
查看>>
NOIP2013普及组 -SilverN
查看>>
substring和substr小结
查看>>
onbeforeunload与onunload事件
查看>>
android端的的网络访问
查看>>
escape()、encodeURI()、encodeURIComponent()区别详解
查看>>
retry
查看>>
使用jQuery插件轻松实现动态流动的网页布局
查看>>
[转]6个HelloWorld
查看>>
C调用C++接口
查看>>
Golang系列:抓取网页内容
查看>>
jquery扩展的两个方法与区别 $.extend $.fn.extend
查看>>