有人可以解释我如何重定向到使用URL中的参数的命名路由吗?
我有以下代码:
Route::put('{handle}', array(
'as' => 'section.update',
'uses' => 'Manneken\\Api\\SectionManager@update'
));
Route::post('{handle}', function()
{
if (Input::has('method') && Input::get('method') === 'PUT') {
Redirect::route('section.update', array(
'handle' => ''
))->withInput();
}
});
所以,我有一个使用PUT的路由,在URL中有{handle}
,如果POST请求,我想重定向到该路由。如何通过{handle}
通过?
答案 0 :(得分:0)
我想通了,我在闭包函数中错过了$handle
作为参数。
我必须说,很高兴看到有用的Laravel社区在工作。这里有很多有用的提示和技巧。所有这些答案都让我感到震惊,非常感谢!