1

我正在研究 AngularJS 自定义指令。我试图在我的指令加载后立即调用一个函数。

我尝试在链接函数中调用该函数,但它抛出错误为TypeError: scope.setCurrent is not a function

这是我试图做的

function pagination() {
    return {
        restrict: 'EA',
        templateUrl: 'template/directives/pagination.html',
        scope: {
            totalData: '@',
        },
        link: dirPaginationControlsLinkFn
    };
}


function dirPaginationControlsLinkFn(scope, element, attrs){
    var vm = this;
    scope.setCurrent(1);    //this function is throwing error

    scope.setCurrent = function(num) {     //working fine
        scope.GetPager(scope.totalData,num,3);
    };
}

当我触发点击事件时,相同的setCurrent(data)函数工作正常

<li ng-repeat="pages in pages track by $index">
  <a ng-click="setCurrent(pages)">{{ pages }}</a>
</li>

我不确定我哪里出错了。任何帮助,将不胜感激

4

1 回答 1

3

问题是您在声明之前调用函数,这就是未定义 setCurrent 的原因。

    scope.setCurrent = function(num) {     //first declare function and initialling with body 
        scope.GetPager(scope.totalData,num,3);
    };

    scope.setCurrent(1);    //than call function 
于 2020-02-24T09:24:19.160 回答