laravel报错Call to undefined method Symfony\Component\HttpFoundation\BinaryFileResponse::header()

本文主要是介绍laravel报错Call to undefined method Symfony\Component\HttpFoundation\BinaryFileResponse::header(),希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

在中间件中使用了

$response->header('Access-Control-Allow-Origin', '*');$response->header('Access-Control-Allow-Headers', 'Origin, Content-Type, Cookie, X-CSRF-TOKEN, Accept, Authorization, X-XSRF-TOKEN');$response->header('Access-Control-Expose-Headers', 'Authorization, authenticated');$response->header('Access-Control-Allow-Methods', 'GET, POST, PATCH, PUT, OPTIONS');$response->header('Access-Control-Allow-Credentials', 'true');

所以在使用laravel-excel做excel导出的时候,使用下载,报Call to undefined method Symfony\Component\HttpFoundation\BinaryFileResponse::header()这个错误。

看了laravel文档,说下载文件用

return response()->download($pathToFile);
return response()->download($pathToFile, $name, $headers);
return response()->download($pathToFile)->deleteFileAfterSend(true);

看来下源码,是用的这个

 public function download($export, string $fileName, string $writerType = null, array $headers = []){return response()->download($this->export($export, $fileName, $writerType)->getLocalPath(),$fileName,$headers)->deleteFileAfterSend(true);}

然后网上看了下,说原因是

$response是Illuminate\Http\Response类的一个实例,而Passport实际上使用的是Symfony\Component\HttpFoundation\Response类响应消息

通过查看源码,发现

Illuminate\Http\Response使用了Illuminate\Http\ResponseTrait,而header就是在这里定义的

public function header($key, $values, $replace = true){$this->headers->set($key, $values, $replace);return $this;}

再查看Symfony\Component\HttpFoundation\Response的源码,发现,里面的header是这样的

$this->headers = new ResponseHeaderBag($headers);

查看use Symfony\Component\HttpFoundation\HeaderBag;的源码,这里是处理header的一个类,而Illuminate\Http\ResponseTrait在处理header时也是用的这个,

public function withHeaders($headers){if ($headers instanceof HeaderBag) {$headers = $headers->all();}foreach ($headers as $key => $value) {$this->headers->set($key, $value);}return $this;}

 

所以从上面的代码看出,我们可以直接使用

$this->headers->set($key, $values, $replace);

那么在中间件中就可以这样用

$response->headers->set('Access-Control-Allow-Origin', '*');$response->headers->set('Access-Control-Allow-Headers', 'Origin, Content-Type, Cookie, X-CSRF-TOKEN, Accept, Authorization, X-XSRF-TOKEN');$response->headers->set('Access-Control-Expose-Headers', 'Authorization, authenticated');$response->headers->set('Access-Control-Allow-Methods', 'GET, POST, PATCH, PUT, OPTIONS');$response->headers->set('Access-Control-Allow-Credentials', 'true');

 

这篇关于laravel报错Call to undefined method Symfony\Component\HttpFoundation\BinaryFileResponse::header()的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/802367

相关文章

模版方法模式template method

学习笔记,原文链接 https://refactoringguru.cn/design-patterns/template-method 超类中定义了一个算法的框架, 允许子类在不修改结构的情况下重写算法的特定步骤。 上层接口有默认实现的方法和子类需要自己实现的方法

Jenkins 插件 地址证书报错问题解决思路

问题提示摘要: SunCertPathBuilderException: unable to find valid certification path to requested target...... 网上很多的解决方式是更新站点的地址,我这里修改了一个日本的地址(清华镜像也好),其实发现是解决不了上述的报错问题的,其实,最终拉去插件的时候,会提示证书的问题,几经周折找到了其中一遍博文

AutoGen Function Call 函数调用解析(一)

目录 一、AutoGen Function Call 1.1 register_for_llm 注册调用 1.2 register_for_execution 注册执行 1.3 三种注册方法 1.3.1 函数定义和注册分开 1.3.2 定义函数时注册 1.3.3  register_function 函数注册 二、实例 本文主要对 AutoGen Function Call

【Python报错已解决】AttributeError: ‘list‘ object has no attribute ‘text‘

🎬 鸽芷咕:个人主页  🔥 个人专栏: 《C++干货基地》《粉丝福利》 ⛺️生活的理想,就是为了理想的生活! 文章目录 前言一、问题描述1.1 报错示例1.2 报错分析1.3 解决思路 二、解决方法2.1 方法一:检查属性名2.2 步骤二:访问列表元素的属性 三、其他解决方法四、总结 前言 在Python编程中,属性错误(At

DBeaver 连接 MySQL 报错 Public Key Retrieval is not allowed

DBeaver 连接 MySQL 报错 Public Key Retrieval is not allowed 文章目录 DBeaver 连接 MySQL 报错 Public Key Retrieval is not allowed问题解决办法 问题 使用 DBeaver 连接 MySQL 数据库的时候, 一直报错下面的错误 Public Key Retrieval is

laravel框架实现redis分布式集群原理

在app/config/database.php中配置如下: 'redis' => array('cluster' => true,'default' => array('host' => '172.21.107.247','port' => 6379,),'redis1' => array('host' => '172.21.107.248','port' => 6379,),) 其中cl

Laravel 面试题

PHP模块 PHP7 和 PHP5 的区别,具体多了哪些新特性? 性能提升了两倍 结合比较运算符 (<=>) 标量类型声明 返回类型声明 try…catch 增加多条件判断,更多 Error 错误可以进行异常处理 匿名类,现在支持通过new class 来实例化一个匿名类,这可以用来替代一些“用后即焚”的完整类定义 …… 了解更多查看文章底部链接 PHP7 新特性 为什么 PHP

vue 父组件调用子组件的方法报错,“TypeError: Cannot read property ‘subDialogRef‘ of undefined“

vue 父组件调用子组件的方法报错,“TypeError: Cannot read property ‘subDialogRef’ of undefined” 最近用vue做的一个界面,引入了一个子组件,在父组件中调用子组件的方法时,报错提示: [Vue warn]: Error in v-on handler: “TypeError: Cannot read property ‘methods

Vue3上传图片报错:Current request is not a multipart request

当你看到错误 "Current request is not a multipart request" 时,这通常意味着你的服务器或后端代码期望接收一个 multipart/form-data 类型的请求,但实际上并没有收到这样的请求。在使用 <el-upload> 组件时,如果你已经设置了 http-request 属性来自定义上传行为,并且遇到了这个错误,可能是因为你在发送请求时没有正确地设置

QT 编译报错:C3861: ‘tr‘ identifier not found

问题: QT 编译报错:C3861: ‘tr’ identifier not found 原因 使用tr的地方所在的类没有继承自 QObject 类 或者在不在某一类中, 解决方案 就直接用类名引用 :QObject::tr( )