标签: javascript angularjs angularjs-scope
当我使用angularjs时,最近我已经养成了利用指令$ destroy事件的习惯,通常我做的事情就像
$scope.$on('$destroy', function() { $element = null; $attrs = null; outOfScopeVariable = null; });
我的问题是,