There is a heavy memory leak in my application but I haven't found out the causes, and here is the background.
So the question is
Do I need to unbind those listeners in directives by following?
scope.$on("$destroy", function() {
$(element).off();
});
BTW, how do you usually find out the memory leak in a web application?
I use chrome's profile (see here Profiling memory performance)
but I could not trace to the codes where memory leaks. Do you have any suggestions?
Thanks a lot!
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…