0

我有以下控制器:

public function postupdate($subject, $id)

//my code

return Redirect::route('webupdate'); // This code is wrong

下面的路线是我想要重定向到的地方,但是如何在包含来自上面控制器的两个 slug 时重定向?

路线:

Route::get('/updateweb/{subject}/{id}/', array( 'as' => 'webupdate', 'uses' => 'WebController@updatefunc'));
4

2 回答 2

0
  return Redirect::route('webupdate', ['subject'=>$subject, 'id'=>$id]);

或者

  return Redirect::route('webupdate', [$subject, $id]);
于 2016-02-19T15:47:56.367 回答
0

简单地

return Redirect::route('webupdate', array($subject, $id));

或者

return Redirect::route('webupdate', array('subject' => $subject, 'id' => $id));

如果你只有一个蛞蝓,你也可以做

return Redirect::route('routename', $id);

在此处阅读有关Laravel 4.2 中重定向的更多信息

于 2016-02-19T16:08:25.717 回答