gpt4 book ai didi

laravel - 导出过程有效但没有下载文件 [ Maatwebsite/Laravel-Excel ]

转载 作者:行者123 更新时间:2023-12-05 07:14:43 32 4
gpt4 key购买 nike

  • PHP 版本:7.3.9
  • Laravel 版本:5.8.30
  • 包版本:3.1

描述

我正在尝试导出 excel 文件。我做了文档中的所有事情,并且过程没有错误。但是 excel 文件没有下载。我使用的是 Ubuntu 操作系统。

用户导出.php

<?php

namespace App\Exports;

use App\User;
use Maatwebsite\Excel\Concerns\FromCollection;

class UsersExport implements FromCollection
{
/**
*/
public function collection()
{
return User::all();
}
}

ExportExcelController.php

<?php

namespace App\Http\Controllers;

use Illuminate\Http\Request;
use App\Exports\UsersExport;

use Maatwebsite\Excel\Facades\Excel;

class ExportExcelController extends Controller
{
public function export()
{

return Excel::download(new UsersExport, 'users.xlsx');
}
}

最佳答案

我看到了同样的行为。我通过清除所有缓存并重新创建配置缓存来解决这个问题。

php artisan cache:clear
php artisan route:clear
php artisan view:clear
php artisan config:cache

关于laravel - 导出过程有效但没有下载文件 [ Maatwebsite/Laravel-Excel ],我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59781167/

32 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com