element.on($ destroy)显示元素未在angular中定义

时间:2015-09-30 18:28:39

标签: angularjs jqlite

我正在尝试在更改应用程序的路由或状态时取消指令中的$ interval事件。我发现这个代码可以在destroy事件中起作用。

但是这返回我的元素没有定义。我是否必须在控制器中注入任何服务或指令。

element.on('$destroy', function() {
          console.log("cancelling interval");
          $interval.cancel(promise);
        });

错误:

ReferenceError: element is not defined
    at new Controller (http://localhost:port/src/controller.js
    at invoke (http://localhost:port/bower_components/angular/angular.js:4182:17)
    at Object.instantiate (http://localhost:port/bower_components/angular/angular.js:4190:27)
    at http://localhost:port/bower_components/angular/angular.js:8453:28
    at $interpolate.compile (http://localhost:port/bower_components/angular-ui-router/release/angular-ui-router.js:3897:28)
    at invokeLinkFn (http://localhost:port/bower_components/angular/angular.js:8217:9)
    at nodeLinkFn (http://localhost:port/bower_components/angular/angular.js:7726:11)
    at compositeLinkFn (http://localhost:port/bower_components/angular/angular.js:7075:13)

提前致谢 代码很长,所以将snipper发布到调用的地方。 更新:

   (function ()
   { 
   'use strict'; 
   angular .module('app')
   .controller('Controller', Controller); 
   Controller.$inject = ['Service', '$modal', '$interval', '$scope']; 
   function Controller(Service, $modal, $interval, $scope)
   { 
     console.log("Beginning");
     var ctrl = this;
     $scope.headerName= "Header Name";
     ctrl.selected = {};
     setupData(); 
     var promise = $interval(setupData, 1000000);
     $scope.on('$destroy', function()
     { 
     $interval.cancel(promise); 
     });

1 个答案:

答案 0 :(得分:0)

使用0x00并在初始化新路由时删除间隔计时器:

$scope.$on('$destroy'..)

在上面的评论中,使用$scope.$on('$destroy', function() { console.log("cancelling interval"); $interval.cancel(promise); }); 的尝试不正确,因为所有角度内部事件方法都使用$scope.on()前缀