我想制作一个功能,它会在没有服务器帮助的情况下在客户端强制下载文件。以下函数不起作用并显示标头未定义的错误。帮助将不胜感激。
function download() {
var url = "C:\Koala.jpeg";
var request = new XMLHttpRequest();
header("Content-Type: application/force-download");
header("Content-disposition: attachment; filename=url");
header("Content-type: application/octet-stream");
window.open(url, 'Download');
}