真正需要使用指令$ destroy事件清理什么?

时间:2015-10-20 05:47:42

标签: javascript angularjs angularjs-scope

当我使用angularjs时,最近我已经养成了利用指令$ destroy事件的习惯,通常我做的事情就像

$scope.$on('$destroy', function() {
  $element = null;
  $attrs = null;
  outOfScopeVariable = null;
});

我的问题是,

  1. 这里真的需要做什么?
  2. 这如何与transcluded指令一起使用?
  3. 最佳做法?

0 个答案:

没有答案