比方说,我在某个未知的Javascript创建的页面中有以下img
元素:
<img src="blob:https://examplesite.com/path-to-blob">
我可以使用src
属性下载与此img
标记关联的文件吗?
我找到了Read data from BLOB URL in Javascript,但是这个问题是在不同的背景下出现的。
我在Chrome DevTools中尝试过fetch("blob:https://examplesite.com/path-to-blob")
,但是得到了net::ERR_FILE_NOT_FOUND
。
我可以做些什么来访问与此img
标签关联的数据吗?