如何通过以下方式在指令控制器中注入依赖项?

How to inject dependencies in directive controller in following way?

我在 angular 应用程序中使用 ng-strict-di 模式。它抛出一个错误

throbberController is not using explicit annotation and cannot be invoked in strict mode

我的代码是:

app.directive('throbberDirective', 
[   
    '_$ajax',
    function(_$ajax){
        return {
            restrict: "EA",
            templateUrl: "common/utils/throbbers/throbber.html",
            controller: throbberController
        }
        function throbberController($scope){
            $scope.throbber = _$ajax.getThrobberConfigs();
            $scope.throbber.templateName = $scope.throbber.templateName;

        }
        throbberController.$inject = ['$scope'];
    }
]);

如何显式注入?我做错了什么吗?帮我解决一下。

app.directive('throbberDirective', 
[   
    function(){
        return {
            restrict: "EA",
            templateUrl: "common/utils/throbbers/throbber.html",
            controller: throbberController
        }
    }
]);
app.controller('throbberController', throbberController);
throbberController.$inject = ['$scope', '_$ajax'];
function throbberController($scope){
     $scope.throbber = _$ajax.getThrobberConfigs();
     $scope.throbber.templateName = $scope.throbber.templateName;

}