return response()->file($url); 或者 return response()->download($url);
我都试过。。但只会输出文件内容,并不会将文件下载下来,
要传递下载后保存的文件名,比如 a.txt
return response()->download($url, 'a.txt');
大佬,download确实是,file()这个又是做什么用的
https://www.workerman.net/doc/webman/response.html#%E4%B8%8B%E8%BD%BD%E6%96%87%E4%BB%B6
好哦
前端应该怎么请求呀?
要传递下载后保存的文件名,比如 a.txt
大佬,download确实是,file()这个又是做什么用的
https://www.workerman.net/doc/webman/response.html#%E4%B8%8B%E8%BD%BD%E6%96%87%E4%BB%B6
好哦
前端应该怎么请求呀?