在 Laravel 中将 Eloquent 导出到 Excel 时如何包含列标题?

新手上路,请多包涵

我试图让用户使用带有产品信息的 Laravel Excel 文件下载 Excel。我当前的网络路线如下所示:

 Route::get('/excel/release', 'ExcelController@create')->name('Create Excel');

我当前的导出看起来像这样:

 class ProductExport implements FromQuery
{
    use Exportable;

    public function __construct(int $id)
    {
        $this->id = $id;
    }

    public function query()
    {
        return ProductList::query()->where('id', $this->id);
    }
}

我当前的控制器如下所示:

 public function create(Request $request) {

    # Only alowed tables
    $alias = [
        'product_list' => ProductExport::class
    ];

    # Ensure request has properties
    if(!$request->has('alias') || !$request->has('id'))
        return Redirect::back()->withErrors(['Please fill in the required fields.'])->withInput();

    # Ensure they can use this
    if(!in_array($request->alias, array_keys($alias)))
        return Redirect::back()->withErrors(['Alias ' . $request->alias . ' is not supported'])->withInput();

    # Download
    return (new ProductExport((int) $request->id))->download('iezon_solutions_' . $request->alias . '_' . $request->id . '.xlsx');
}

当我转到 https://example.com/excel/release?alias=product_list&id=1 时,它会正确执行并返回一个 excel 文件。但是,行没有列标题。数据出来是这样的:

 1   150 1   3       2019-01-16 16:37:25 2019-01-16 16:37:25     10

但是,这应该包含列标题,如 ID、成本等…如何在此输出中包含列标题?

原文由 Jaquarh 发布,翻译遵循 CC BY-SA 4.0 许可协议

阅读 333
2 个回答

根据 文档,您可以更改类以使用 WithHeadings 接口,然后定义 headings 函数以返回列标题数组:

 <?php
namespace App;

use Maatwebsite\Excel\Concerns\FromQuery;
use Maatwebsite\Excel\Concerns\WithHeadings;

class ProductExport implements FromQuery, WithHeadings
{
    use Exportable;

    public function __construct(int $id)
    {
        $this->id = $id;
    }

    public function query()
    {
        return ProductList::query()->where('id', $this->id);
    }

    public function headings(): array
    {
        return ["your", "headings", "here"];
    }
}

这适用于所有导出类型( FromQueryFromCollection 等)

原文由 miken32 发布,翻译遵循 CC BY-SA 4.0 许可协议

<?php
namespace App\Exports;
use Maatwebsite\Excel\Concerns\FromCollection;
use Maatwebsite\Excel\Concerns\WithHeadings;
use DB;
class LocationTypeExport implements FromCollection,WithHeadings
{
    public function collection()
    {
        $type = DB::table('location_type')->select('id','name')->get();
        return $type ;
    }
     public function headings(): array
    {
        return [
            'id',
            'name',
        ];
    }
}

原文由 Priyanka_acube 发布,翻译遵循 CC BY-SA 4.0 许可协议

撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题
logo
Stack Overflow 翻译
子站问答
访问
宣传栏