Laravel Storage下载返回空白页/标题错误

icomxhvb  于 2022-11-18  发布在  其他
关注(0)|答案(1)|浏览(107)

我尝试下载一个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

有什么建议吗?

6kkfgxo0

6kkfgxo01#

我发现了错误。我从另一个函数调用了下载函数,但没有返回:-(

相关问题