作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
所以当我尝试加载我的 Angular 应用程序时,我收到此错误:
ERROR Error: Uncaught (in promise):
NullInjectorError: StaticInjectorError(AppModule)[AppComponent -> MatDialog]:
StaticInjectorError(Platform: core)[AppComponent -> MatDialog]:
我的 ts 文件看起来像这样,每个其他帮助问题都说将 MatDialog 添加到我的 NgModule 导入中,但我已经这样做了,但仍然收到错误。大多数错误是 StaticInjectorErrors,而我的错误是 NullInjectorError,但我不确定这两者之间有什么区别。
import { Component, NgModule } from '@angular/core';
import { MatDialog, MatDialogConfig, MatDialogModule, MatDialogRef, MAT_DIALOG_DATA } from '@angular/material/dialog';
import { compileNgModule } from '@angular/compiler';
import { AppDialog } from '../appDialog/app-dialog.component';
@Component({
selector: 'app-component',
templateUrl: './app.component.html'
})
@NgModule({
imports: [MatDialog, MatDialogRef, MatDialogConfig, MatDialogModule]
})
export class AppComponent {
constructor(private appService: AppService, private dialog: MatDialog) {
}
openDialog() {
const dialogConfig = new MatDialogConfig();
dialogConfig.disableClose = true;
dialogConfig.height = "350px";
dialogConfig.width = "600px";
dialogConfig.data = {
};
const dialogRef = this.dialog.open(AppDialog, dialogConfig);
dialogRef.afterClosed().subscribe(result => {
console.log('closed dialog');
this.success = result;
})
}
}
最佳答案
在我的情况下,我在尝试构建如下对话框组件时看到此错误:
my-dialog.component.ts
<mat-dialog-container>
<mat-dialog-content>
<p>Hello</p>
<p>I am a dialog</p>
</mat-dialog-content>
<mat-dialog-actions>
<button mat-raised-button>Click me</button>
</mat-dialog-actions>
</mat-dialog-container>
问题是我使用的是mat-dialog-container
。对于通过 matDialog.open(MyDialogComponent)
相反,只需完全删除 mat-dialog-container
并仅使用子节点。
关于 Angular 空注入(inject)器错误: No Provider for MatDialog,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59851560/
我是一名优秀的程序员,十分优秀!