3

有没有办法阻止广播从父控制器传播到子控制器?

家长:

$scope.$on('event', function() {
     //stop propagation
})

孩子:

$scope.$on('event', function() {
    //only fired by this controller scope
})
4

1 回答 1

4

哦,这很容易。

if (ev.targetScope.$id != ev.currentScope.$id) {
    return
}
于 2013-08-22T20:16:02.593 回答