Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
通过 AJAX,我收到了 base64 中的图像,我将其附加到 img 标签的 src 属性。
我想提供一个下载该图像的选项,是否可以获取 src 属性的数据并下载它?这是因为我无法再次从服务器下载图像。
谢谢你。
只需将 设置window.location为编码的 URI(或打开一个弹出窗口),例如
window.location
window.location.href = 'data:image/png;base64,iVBORw0KGgo....