Angular js指令控制器访问范围属性但返回未定义

时间:2016-02-23 10:14:42

标签: javascript angularjs angularjs-directive angular-controller

我已经构建了一个带链接函数和控制器的简单指令。

我需要访问控制器中作用域中的属性集,但它仍然说未定义。

指令:

app.directive('calendarSelectFilter', ['$log', 'eventService', function( $log, eventService ) {
    return {
        restrict: 'E',
        scope: {
            startingValue: '=',
            selected: "=value",
            filterType: '='
        },
        controller: function( $scope ){

            var options =[];
            console.log($scope); //LOG ONE
            console.log($scope.filterType);  //LOG TWO
            switch( $scope.filterType ){
                case 'environment':{
                    console.log( 'fetching envOptions' );
                    options = eventService.getSchemaLabelsAsArray('envOptions');
                } break;
                case 'event-type':{
                    options = eventService.getSchemaLabelsAsArray('eventNames');
                } break;
            }

            $scope.options = options;
        },
        link: function( scope, element, attrs ){
            if( !attrs.filterType ){
                $log.error( 'No filterType passed to the calendarSelectFilter directive' );
            }
            scope.filterType = attrs.filterType;
            scope.selected = scope.startingValue;
        },
        template: '<select ng-model="selected" ng-options="option for option in options">{{option}}</select>'
    }
}]);

这是该指令的使用示例:

<calendar-select-filter value="filter_options.environment" filter-type="environment"></calendar-select-filter>

在控制器中我有两个console.log。

控制台日志打印:

k {$id: "007", $$childTail: null, $$childHead: null, $$prevSibling: null, $$nextSibling: null…}
$$asyncQueue: Array[0]
$$childHead: null
$$childTail: null
$$destroyed: false
$$isolateBindings: Object
$$listenerCount: Object
$$listeners: Object
$$nextSibling: a.$$childScopeClass.$$childScopeClass
$$phase: null
$$postDigestQueue: Array[0]
$$prevSibling: null
$$watchers: Array[6]
$id: "007"
$parent: a.$$childScopeClass.$$childScopeClass
$root: k
filterType: "environment"
options: Array[0]
selected: undefined
startingValue: undefined
this: k
__proto__: k

然后控制两张照片:

undefined

我需要访问&#34; filterType&#34;在指令控制器中,但如何?

我可以看到范围内所有东西都嵌套在一个名为k的东西中,但是当我控制日志$ scope.k时我也得到了未定义的东西?!

1 个答案:

答案 0 :(得分:0)

您的控制器功能在链接功能之前执行。

您没有像使用选项那样拥有filterType的默认值。

在链接函数运行之前,不会定义fitlesType值。为什么不在控制器功能中提供默认值?