如何使用Laravel中的数据重定向根

时间:2016-02-20 04:51:09

标签: php laravel laravel-4

重定向网址时如何发送数据。

控制器中的代码:

bin/plugin --install elasticsearch/watcher/latest
bin/plugin --install elasticsearch/license/latest

4 个答案:

答案 0 :(得分:1)

如果要重定向到控制器中的操作,

return Redirect::action('UserController@profile', array('user' => 1));

答案 1 :(得分:1)

使用数据重定向的方式是正确的。

with方法将数据闪烁到会话中。

因此,要访问在视图中闪烁的数据,请使用Session::get方法。

答案 2 :(得分:0)

试试这个

return view('your_view_neme')->with(['first_index'=>$first_value,'second_index'=>$second_value]);

答案 3 :(得分:0)

只需使用以下语法(使用命名参数):

重定向到路由

return Redirect::to('cuslist', array('id' => $id, 'age' => $age));

重定向到指定路线

return Redirect::route('cuslist', array('id' => $id, 'age' => $age));

重定向到控制器方法

return Redirect::action('YourController@yourMethod', array('id' => $id, 'age' => $age));

可在以下网址找到更多信息:https://laravel.com/docs/4.2/responses#redirects