Create a Laravel Request object on the fly(动态创建 Laravel Request 对象)
问题描述
我正在一个控制器中处理数据,并希望将其进一步传递到另一个控制器中以避免重复代码.
有没有办法设置另一个控制器的 store 方法中需要的 Request 对象?我已经追踪了 Request 继承并找到了 Symfony 的 Request 对象,它有一个
request
属性,它实际上是一个 ParameterBag
,它包含一个方法 add
> 添加带有值的参数.
我尝试了以下方法,但结果是 null
:
$myRequest = new Request();$myRequest->request->add(['foo' =>'bar']);var_dump($myRequest->foo);
我正在为这个项目使用 Laravel 5.1.
你可以使用replace()
:
$request = new IlluminateHttpRequest();$request->replace(['foo' =>'bar']);dd($request->foo);
或者,为第二个控制器中发生的任何事情创建一个 Job
并删除 ShouldQueue
接口以使其同步运行会更有意义.>
希望这有帮助!
I'm handling data in one controller and want to pass it further into another controller to avoid duplicate code.
Is there a way to set up a Request object that is needed in the other controller's store
-method? I've traced down the Request inheritance and came to Symfony's Request object which has a request
property that is in fact a ParameterBag
that holds a method add
to add parameters with values to it.
I've tried the following but I'm getting null
as result:
$myRequest = new Request();
$myRequest->request->add(['foo' => 'bar']);
var_dump($myRequest->foo);
I'm on Laravel 5.1 for this project.
You can use replace()
:
$request = new IlluminateHttpRequest();
$request->replace(['foo' => 'bar']);
dd($request->foo);
Alternatively, it would make more sense to create a Job
for whatever is going on in your second controller and remove the ShouldQueue
interface to make it run synchronously.
Hope this helps!
这篇关于动态创建 Laravel Request 对象的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:动态创建 Laravel Request 对象
基础教程推荐
- 在 CakePHP 2.0 中使用 Html Helper 时未定义的变量 2021-01-01
- 使用 PDO 转义列名 2021-01-01
- Doctrine 2 - 在多对多关系中记录更改 2022-01-01
- HTTP 与 FTP 上传 2021-01-01
- phpmyadmin 错误“#1062 - 密钥 1 的重复条目‘1’" 2022-01-01
- 如何在 Symfony 和 Doctrine 中实现多对多和一对多? 2022-01-01
- 如何在 XAMPP 上启用 mysqli? 2021-01-01
- 找不到类“AppHttpControllersDB",我也无法使用新模型 2022-01-01
- PHP 守护进程/worker 环境 2022-01-01
- 在 yii2 中迁移时出现异常“找不到驱动程序" 2022-01-01