-2
角度2への新規作成すべてのビュー/コンポーネントからのエラー メッセージを表示するグローバルエラーコンポーネントに取り組んでいます。グローバルコンポーネントへの角度2のプッシュメッセージ
は、どのように私は別のコンポーネントからグローバル誤差成分を通信することができます。**
// appComponent.ts
appComponet will have several components
@Component({
selector: 'app',
template: `
<notification-component></notification-component>
<header-component></header-component>
<router-outlet></router-outlet>
<footer-component></footer-component>
})
**I like to push messages to notification-component.
here is the notificationComponent**
import { Component, OnInit } from '@angular/core';
@Component({
selector: 'notification-component',
templateUrl:"app/notification/notification-view.component.html",
styleUrls:["app/notification/css/notification-view.component.css"]
})
NotificationViewComponent will have notificationMessages
export class NotificationViewComponent implements OnInit {
notificationMessages = [];
hideNotification: boolean = false;
ngOnInit(): void {
this.notificationMessages.push("We arre sorry -- an error occurred while one of your request. ");
}
hideNotificationSection() {
this.hideNotification = true;
}
}
私は別のコンポーネント(ないアプリのコンポーネントからの)からのメッセージをプッシュしようとしています。
他のコンポーネントの通知コンポーネントにメッセージをプッシュするにはどうすればよいですか?
あなたのコードを書いて、直接対処できる特定の質問をしてください。 –
このフォーラムは初めてです。私は改善しようとします –