3
有沒有辦法阻止廣播從父母傳播到子控制器?在angularjs中停止從父到子控制器的廣播傳播?
家長:
$scope.$on('event', function() {
//stop propagation
})
兒童:
$scope.$on('event', function() {
//only fired by this controller scope
})
有沒有辦法阻止廣播從父母傳播到子控制器?在angularjs中停止從父到子控制器的廣播傳播?
家長:
$scope.$on('event', function() {
//stop propagation
})
兒童:
$scope.$on('event', function() {
//only fired by this controller scope
})
哦,這很容易。
if (ev.targetScope.$id != ev.currentScope.$id) {
return
}