ngx-toastr显示内容,但不显示对话框

时间:2019-07-05 06:51:21

标签: angular8 angular-toastr

我尝试在Angular 8中使用ngx-toastr,但显示的是文本,而不显示对话框。 另外,我正在为项目使用引导程序CDN

我尝试过更新ngx-toastr,甚至尝试过各种版本的引导程序CDN

//the html file
<button (click)="help()"></button>

//component file
import { ToastrService } from 'ngx-toastr';

export class EmployeeComponent implements OnInit {
  constructor(private service:EmployeeService,private store:AngularFirestore,private toastr: ToastrService) { }

help()
{
  this.toastr.success('Submitted','Good job');

}

我希望它能像往常一样工作...显示消息的对话框。但目前仅显示该消息。

这是屏幕截图。

Image Alternate text

0 个答案:

没有答案