質問

To un-subscribed from $broadcast in $on, one can do

var cleanUp = $rootScope.$on('myBroadcast', function(){ ... });
cleanUp();

Is there a way to re-subscribe once you have called cleanUp()?

役に立ちましたか?

解決

function foo () {
  return $rootScope.$on('myBroadcast', function(){ ... });
}
var cleanup = foo(); // listen

// somewhere down the road
cleanup(); // unlisten

// somewhere down the road
foo(); // listen again
ライセンス: CC-BY-SA帰属
所属していません StackOverflow
scroll top