我知道警报的工作方式,因为我正在“ user-management.component.html”中复制警报的示例。但是我看到它们在用户管理页面上正常工作,并且无法让它们在我创建的新页面上工作。
这是我的HTML:
<jhi-alert></jhi-alert>
这是我的JS(同样,此确切的代码也可以在用户管理页面上使用):
import { Component, OnInit } from '@angular/core';
import { JhiAlertService, JhiEventManager } from 'ng-jhipster';
'@angular/common/http';
@Component({
selector: 'jhi-home',
templateUrl: './volumefinder.component.html',
})
export class VolumefinderComponent implements OnInit {
constructor(
private alertService: JhiAlertService
) {
this.alertService.error("foo", "bar", null);
}