我试图让用户使用带有产品信息的 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 许可协议
根据 文档,您可以更改类以使用
WithHeadings
接口,然后定义headings
函数以返回列标题数组:这适用于所有导出类型(
FromQuery
,FromCollection
等)