有没有办法阻止广播从父控制器传播到子控制器?
父:
$scope.$on('event', function() {
//stop propagation
})
子:
$scope.$on('event', function() {
//only fired by this controller scope
})
答案 0 :(得分:4)
哦,很容易。
if (ev.targetScope.$id != ev.currentScope.$id) {
return
}