将参数传递到过滤器-Laravel 4


Passing arguments to a filter - Laravel 4

是否可以访问过滤器中的路由参数?

例如,我想访问$agencyId参数:

Route::group(array('prefix' => 'agency'), function()
{
    # Agency Dashboard
    Route::get('{agencyId}', array('as' => 'agency', 'uses' => 'Controllers'Agency'DashboardController@getIndex'));
});

我想在我的过滤器中访问这个$agencyId参数:

Route::filter('agency-auth', function()
{
    // Check if the user is logged in
    if ( ! Sentry::check())
    {
        // Store the current uri in the session
        Session::put('loginRedirect', Request::url());
        // Redirect to the login page
        return Redirect::route('signin');
    }
    // this clearly does not work..?  how do i do this?
    $agencyId = Input::get('agencyId');
    $agency = Sentry::getGroupProvider()->findById($agencyId);
    // Check if the user has access to the admin page
    if ( ! Sentry::getUser()->inGroup($agency))
    {
        // Show the insufficient permissions page
        return App::abort(403);
    }
});

仅供参考,我在我的控制器中称这个过滤器为:

class AgencyController extends AuthorizedController {
    /**
     * Initializer.
     *
     * @return void
     */
    public function __construct()
    {
        // Apply the admin auth filter
        $this->beforeFilter('agency-auth');
    }
...

Input::get只能检索GETPOST(依此类推)参数

要获取路由参数,您必须在过滤器中获取Route对象,如下所示:

Route::filter('agency-auth', function($route) { ... });

并获取参数(在您的过滤器中):

$route->getParameter('agencyId');

(只是为了好玩)在您的路线

Route::get('{agencyId}', array('as' => 'agency', 'uses' => 'Controllers'Agency'DashboardController@getIndex'));

您可以在参数数组'before' => 'YOUR_FILTER'中使用,而不是在构造函数中详细说明它。

Laravel 4.1中的方法名称已更改为parameter。例如,在RESTful控制器中:

$this->beforeFilter(function($route, $request) {
    $userId = $route->parameter('users');
});

另一个选项是通过Route facade检索参数,当您在路由之外时,这很方便:

$id = Route::input('id');