UNPKG

@mt-kit/utils

Version:
18 lines (17 loc) 438 B
/** * 根据文件地址进行下载 * * Url 文件的地址 * * target 链接的打开方式,默认为 '_blank' * * fileName 保存的文件名,如果不提供会从 URL 中提取 * * isCORS 是否是 CORS 跨域请求,默认为 false */ export default function downloadByUrl({ url, target, fileName, isCORS }: { url: string; target?: "_self" | "_blank"; fileName?: string; isCORS?: boolean; }): boolean;