Angular 2 Primeng消息服务未显示消息

时间:2018-05-18 11:23:16

标签: angular service message primeng

下面用于显示弹出通知的预定义Primeng消息服务

import { MessageService } from "primeng/components/common/messageservice

@Component({
    selector: "student-wizard",
    providers: [MessageService],
    templateUrl: "student-wizard.component.html",
    styleUrls: ["student-wizard.component.css"]
})

constructor(
        private messageService: MessageService)
{}

我们在HTML中调用以下方法:

 public hideDialog(): void {
        this.messageService.add({
            severity: "info", 
            summary: "Student Updation Terminated",
            detail: "No updation performed"
        });
        this.router.navigateByUrl("studentTask", { relativeTo: this.route });
    }

但是,在执行时没有错误,也没有显示弹出消息。

1 个答案:

答案 0 :(得分:1)

这是因为您正在导航到另一条路线,因此它不会显示任何消息。

要避免这种情况,请将您的选择器移至应用级别,例如app.component.html

<p-growl [(value)]="globalService.msgs"></p-growl>

并尝试将来自某些全局服务的所有邮件推送到它将启用您的导航 以及消息