source

$190 $190 동기식 또는 비동기식?

manycodes 2023. 2. 14. 21:33
반응형

$190 $190 동기식 또는 비동기식?

이다$scope.$emit()그리고.$scope.$broadcast()문자 그대로 동기식입니까, 비동기식입니까?

예를 들어,

$scope.$emit()
console.log(" I am finished sending events");

그리고.

$scope.$broadcast()
console.log(" I am finished sending events");

모든 청취자가 동기화되어 있는 경우(ajax 콜 등이 없는 경우) 모든 청취자가 이벤트를 수신한 후에만 로깅이 이루어집니까?

그들은 동기하고 있다.

https://groups.google.com/d/msg/angular/yyH3FYAy5ZY/APANNMnolD8J 도 참조해 주세요.

언급URL : https://stackoverflow.com/questions/18130369/emit-broadcast-synchronous-or-asynchronous

반응형