UNPKG

web-utils-super

Version:

前端函数库

15 lines (13 loc) 400 B
/** * @desc: 通过File或Blob下载图片 * @param {File | Blob} data File 对象或 Blob 对象 */ function downloadImgFile(data) { const fileUrl = window.URL.createObjectURL(data) const eleA = document.createElement('a') eleA.setAttribute('href', fileUrl) eleA.setAttribute('download', '') eleA.click() URL.revokeObjectURL(fileUrl) } module.exports = downloadImgFile