无法在Laravel 5.2中的中间件中注入依赖项

时间:2016-08-12 04:09:00

标签: php dependency-injection laravel-5.2 laravel-middleware

我正在使用Laravel 5.2开发Web应用程序。我知道Laravel支持依赖注入。我是在中间件中做的。但是不会注入依赖项,并且注入的类的实例始终为null。这就是我所做的。

这是我的中间件

class StoreMiddleware
{
    private $categoryRepo;

    function __construct(CategoryRepo $categoryParam)
    {
        $categoryRepo = $categoryParam;
    }

    public function handle($request, Closure $next)
    {
        $categories = $this->categoryRepo->getTreeViewCategories();
        view()->share(['categories'=>$categories]);
        return $next($request);
    }
}

我在内核中声明了这个

protected $routeMiddleware = [
        .
        .
        .
        'store' =>\App\Http\Middleware\StoreMiddleware::class
    ];

我像这样配置路线

Route::group(['middleware'=>'store'],function(){
    Route::get('home','HomeController@index');
    Route::get('/','HomeController@index');
});

当我访问主页时,它给了我这个错误

FatalThrowableError in StoreMiddleware.php line 20:
Call to a member function getTreeViewCategories() on null

正如您所看到的,它表示categoryRepo为null并且不会被注入。

这是我在CategoryRepo模型中的getTreeViewCategories()方法。

function getTreeViewCategories()
    {
        $items = array();
        return $items;
    }

正如你所看到的,我在模型中没有做任何事情只是为了确保注射是否有效。我的代码出了什么问题?

1 个答案:

答案 0 :(得分:2)

您没有在此处指定对象属性:

function __construct(CategoryRepo $categoryParam)
{
    $categoryRepo = $categoryParam;
}

将其更改为:

function __construct(CategoryRepo $categoryParam)
{
    $this->categoryRepo = $categoryParam
}