在Angular 9中,当一个组件执行了某个操作,而另一个组件需要被通知到时,可以使用一个共享的服务来实现通信。以下是一个示例:
NotificationService
的服务:import { Injectable } from '@angular/core';
import { Subject } from 'rxjs';
@Injectable({
providedIn: 'root'
})
export class NotificationService {
private actionSubject = new Subject();
action$ = this.actionSubject.asObservable();
notifyAction(action: string) {
this.actionSubject.next(action);
}
}
NotificationService
并调用notifyAction
方法:import { Component } from '@angular/core';
import { NotificationService } from 'notification.service';
@Component({
selector: 'app-component1',
template: `
`
})
export class Component1 {
constructor(private notificationService: NotificationService) { }
executeAction() {
// 执行操作
// ...
// 通知其他组件执行了操作
this.notificationService.notifyAction('action executed');
}
}
NotificationService
并订阅action$
属性:import { Component } from '@angular/core';
import { NotificationService } from 'notification.service';
@Component({
selector: 'app-component2',
template: `
操作已执行
`
})
export class Component2 {
actionExecuted = false;
constructor(private notificationService: NotificationService) { }
ngOnInit() {
this.notificationService.action$.subscribe((action: string) => {
if (action === 'action executed') {
this.actionExecuted = true;
}
});
}
}
在这个示例中,当Component1
中的按钮被点击执行操作时,它会通过NotificationService
通知其他组件。在Component2
中,订阅NotificationService
的action$
属性,并根据接收到的通知来更新界面的状态。
通过这种方式,不相关的组件之间可以实现通信,并对其他组件执行的操作作出响应。