在Laravel Excel的文档中找不到如何在下载之前为加载的文件指定新名称.我试过了 – > setTitle但它不起作用.
Excel::load(public_path().'/bills/bill.template.xlsx', function($doc) {
$doc->setTitle = 'test';
$sheet = $doc->setActiveSheetIndex(0);
$sheet->setCellValue('G21', '{buyer}');
$sheet->setCellValue('AB24', '{sum}');
$sheet->setCellValue('B30', '{sum_propis}');
})->download('xlsx');
当我在等待“test.xlsx”时,它给了我“bill.template.xlsx”
解决方法:
我之前没有使用过这个库,但看看代码看起来你可以set the filename attribute哪个will then get used in the headers to set the name of the file downloaded.
可能是这样的:
Excel::load(public_path().'/bills/bill.template.xlsx', function($doc)
{...})
->setFilename('whatever')
->download('xlsx');
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。