我刚刚开始学习Angular 5,我只需要打开一个对话框上的按钮点击。应用程序无法建立和错误,我来了是'错误ts2339属性对话框不存在的类型 Jmeter 板组件'我已经安装了Angular 材料和cdk。它仍然来了相同的错误时编译。和在html页面(localhost:4200),错误,我得到的是'无法读取属性'打开'的未定义'。我怎样才能得到对话框,并打开工作Angular ?
typescript :
import { Component, OnInit } from '@angular/core';
import { WebapiService } from '../providers/webapi.service';
import { MatDialog, MatDialogRef } from '@angular/material';
import { ServerDialogComponent } from '../server-dialog/server-dialog.component';
@Component({
selector: 'app-dashboard',
templateUrl: './dashboard.component.html',
styleUrls: ['./dashboard.component.scss']
})
export class DashboardComponent implements OnInit {
constructor(private webApi: WebapiService) { }
ngOnInit() {
}
openServerDialog() {
const serverDialogRef = this.dialog.open(ServerDialogComponent, {
width: '250px',
data: { serverlist: this.webApi.getServerList() }
});
}
}
HTML格式:
<div class="main-content">
<div class="container-fluid">
<button mat-fab color="warning" (click)="openServerDialog()">open</button>
</div>
</div>
3条答案
按热度按时间4dc9hkyq1#
您需要创建一个dialog within your constructor,没有
this.dialog.open(...)
会导致 * 无法读取未定义的属性'open'*:yk9xbfzb2#
首先在AppModule中导入MatDialogModule
HTml档案
TS文件
服务器对话框组件ts文件
e0bqpujr3#
错误:无法读取未定义的属性'open':
您的编译器应该指出modal缺少提供程序(有时会重新启动编译器以显示错误消息)
无论如何,你都应该检查一下你的模块。你需要注册你的组件。可能你只是复制了一个类似的文件并重命名了名称。
后来我的工作[看到绿色的变化,以查明我添加到我的模块] enter image description here