我尝试下载一个xlsx文件与Laravel存储:
$header = [
'Content-Type: application/vnd.ms-excel'
];
//dd(Storage::exists('invoices.xlsx')); // true
return Storage::download('invoices.xlsx', 'invoices.xlsx', $header);
它返回一个空白页面(本地和实时系统),带有以下标题:
host: 127.0.0.1:8000
date: Wed, 15 Nov 2022 18:31:14 GMT; Wed, 15 Nov 2022 18:31:14 GMT
connection: close
x-powered-by: PHP/8.0.14
cache-control: no-cache, private
content-type: text/html; charset=UTF-8
有什么建议吗?
1条答案
按热度按时间6kkfgxo01#
我发现了错误。我从另一个函数调用了下载函数,但没有返回:-(