无法解析MatDialogRef angular 4的所有参数

前端之家收集整理的这篇文章主要介绍了无法解析MatDialogRef angular 4的所有参数前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在研究Angular 4,我正在尝试设置材料包,在这里我试图尝试对话,但它不起作用可能是因为材料包我不确定.

这是我的(dialog.components.ts):

import {Component,OnInit} from '@angular/core';
import {MatDialogRef} from '@angular/material'

@Component({
    selector: 'app-dialog',templateUrl: './dialog.component.html',styleUrls: ['./dialog.component.css']
})
export class DialogComponent implements OnInit {

    public receivedNode: any;

    constructor(public dialogRef: MatDialogRef<DialogComponent>) {
    }

    ngOnInit() {
    }

}

在我的模块中:

import {MatButtonModule,MatMenuModule,MatToolbarModule,MatIconModule,MatCardModule,MatDialogRef} from '@angular/material';


 @NgModule({
        imports: [
            CommonModule,MatButtonModule,RouterModule.forRoot(
                appRoutes,{enableTracing: true}
            ),],declarations: [],exports: [
            MatButtonModule,MatCardModule
        ],entryComponents: [DialogComponent],providers: [MatDialogRef]
    })
    export class DialogModule {
    }

我收到了这个错误

有任何想法吗?

编辑

我的通话功能

openPopup(){
        const config = new MatDialogConfig();
        const dialogRef: MatDialogRef<DialogComponent> = this.dialog.open(DialogComponent,config);

        dialogRef.componentInstance.receivedNode = "test";
        console.log("test");
    }
希望这有助于我拥有的东西:

组件:

import { MatDialog } from '@angular/material';
import { DialogComponent } from './dialogs'; // component name of dialog can add multiple in here.

@Component({
    selector: 'yourComponent',templateUrl: './yourComponent.html'
})
export class YourComponent {

  private dialogRef: any;
  constructor(public dialog: MatDialog) {

  openPopup(){
    this.dialogRef = this.dialog.open(DialogComponent,{
                                    width: '250px',height: '25%',data: { errorcode: errorCode,errormessage: errorMessage }
                                });
                                this.dialogRef.updatePosition({ top: '3%',left: '20%' });
  }

在模块中:

import { DialogComponent } from './dialogs'; // component name of dialog
import { NgModule,CUSTOM_ELEMENTS_SCHEMA,NO_ERRORS_SCHEMA } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';
import { MatDialogModule } from '@angular/material';

@NgModule({
    declarations: [
        DialogComponent 
    ],imports: [
        BrowserModule,MatDialogModule
    ],entryComponents: [
        DialogComponent 
    ],schemas: [CUSTOM_ELEMENTS_SCHEMA,NO_ERRORS_SCHEMA]
})

最后一个对话框:

import {Component,OnInit} from '@angular/core';
import { MatDialogRef,MAT_DIALOG_DATA } from '@angular/material';

@Component({
    selector: 'app-dialog',styleUrls: ['./dialog.component.css']
})
export class DialogComponent implements OnInit {

    constructor(public dialogRef: MatDialogRef<DialogComponent>,@Inject(MAT_DIALOG_DATA) private data: any) { } // this.data.errormessage contain error message. Not sure if need OnInit.

    ngOnInit() {
    } // I not use this I put the data in html and click on buttons there to interact with the component.

}
原文链接:https://www.f2er.com/angularjs/140921.html

猜你在找的Angularjs相关文章