我想在我的应用程序启动时显示一个对话框,但是我得到了错误的ReferenceError: $ is not defined,尽管我已经将它定义为declare var $: any;。演示在我定义了一个DialogComponent,它是dialog.component.html中简单的Bootstrap模式。它有一个方法showDialog,它调用Bootstrap的modal方法$(this.dialogRef.nativeElement).modal('show');。
在app.component.html中,我正在使用DialogC