Angular:将数据从材料对话框传递到未打开对话框的组件

Posted

技术标签:

【中文标题】Angular:将数据从材料对话框传递到未打开对话框的组件【英文标题】:Angular: Pass data from Material Dialog to component, which didn't open the dialog 【发布时间】:2019-05-14 14:15:10 【问题描述】:

我有一个 network.component 可以打开我的对话框 send-tx-dialog.component。用户在 send-tx-dialog 中填写信息。我想将该信息发送到另一个组件:transaction-pool.component。 之后我想动态显示数据表中的数据。我尝试使用 push() 但它不起作用。

有什么方法可以做到这一点?

遵循一些我认为可能很重要的代码。

对话的部分TS:

  constructor(
    private fb: FormBuilder,
    private dialogRef: MatDialogRef<SendTXDialogComponent>,
    @Inject(MAT_DIALOG_DATA) data) 

    this.sender = data.sender;

    this.form = this.fb.group(
      sender: [this.sender, Validators.required],
      recipient: [this.recipient, Validators.required],
      amount: [this.amount, Validators.required],
      fee: [this.fee, Validators.required],
      releasedAt: [moment(), Validators.required]
    );
  

对话框在 network.component.ts 中打开:

  openDialog(nodeID) 

    const dialogConfig = new MatDialogConfig();

    dialogConfig.disableClose = true;
    dialogConfig.autoFocus = true;
    dialogConfig.hasBackdrop = false;

    dialogConfig.data = 
      sender: nodeID,
    ;

    const dialogRef = this.dialog.open(SendTXDialogComponent, dialogConfig);

    dialogRef.afterClosed().subscribe(
      data => console.log('Send Transaction Output:', data)
    );

  

事务池.component.ts:

export class TransactionPoolComponent implements OnInit 
  displayedColumns = ['sender', 'recipient', 'amount', 'fee'];
  dataSource = ELEMENT_DATA;

  transaction: Transaction;

  constructor(private _AS: AuthenticationService) 
  

  ngOnInit() 
    this._AS.transaction.subscribe( transaction => 
      this.transaction = transaction;
      this.dataSource.push(this.transaction); // This doesn't display the data in the table
      
    );
  


export interface Transaction 
  sender: number;
  recipient: string;
  amount: number;
  fee: string;


const ELEMENT_DATA: Transaction[] = [
];

【问题讨论】:

您必须使用服务进行数据共享 可以举个小例子吗? 【参考方案1】:

您应该使用共享服务。 在 ngAfterViewInit 中,将对话框组件订阅到要在共享服务中侦听的属性。 在父组件中调用共享服务方法,该方法将在共享服务中设置属性。 属性应该是 Subject (rxjs)

类型

看看这篇文章:你就会明白一切。 共享服务部分。 https://netbasal.com/event-emitters-in-angular-13e84ee8d28c 只需确保您在对话框组件中订阅了 ngAfterViewInit。

【讨论】:

【参考方案2】:

我不知道这是解决问题的正确方法,但如果它对你有用,我会尽力提供帮助

network.component.html

<button mat-raised-button (click)="openDialog()">Click</button>

network.component.ts

 constructor(private fb: FormBuilder, private _AS: AuthService, public dialog: MatDialog) 
    openDialog(): void 
        const dialogRef = this.dialog.open(DialogOverviewExampleDialog, 
          width: '250px',
          data: ''
        );

        dialogRef.afterClosed().subscribe(result => 
          this._AS.emitTransaction(result);
          console.log('The dialog was closed');
        );
      

对话 TS:

@Component(
  selector: 'app-dialog',
  templateUrl: 'dialog.html',
)
export class DialogOverviewExampleDialog 
  form: FormGroup;
  constructor(
    public dialogRef: MatDialogRef<DialogOverviewExampleDialog>,
    @Inject(MAT_DIALOG_DATA) public data: any, private fb: FormBuilder) 
   this.form = this.fb.group(
      sender: ['', Validators.required],
      recipient: ['', Validators.required],
      amount: ['', Validators.required],
      fee: ['', Validators.required],
      releasedAt: [moment(), Validators.required]
    );
  
  onNoClick(): void 
    this.dialogRef.close();
  

dialog.html

<div [formGroup]="form">
  <mat-form-field class="example-full-width">
    <input matInput placeholder="first" formControlName="sender">
  </mat-form-field>
  <mat-form-field class="example-full-width">
    <input matInput placeholder="second" formControlName="recipient">
  </mat-form-field>
<mat-form-field class="example-full-width">
    <input matInput placeholder="second" formControlName="amount">
  </mat-form-field>
<mat-form-field class="example-full-width">
    <input matInput placeholder="second" formControlName="fee">
  </mat-form-field>
<mat-form-field class="example-full-width">
    <input matInput placeholder="second" formControlName="releasedAt">
  </mat-form-field>
 <button [mat-dialog-close]="form.value">save</button>
</div>

授权服务:

 export class AuthService 

     public transaction = new BehaviorSubject<any>(false);
  transaction$ = this.transaction.asObservable();

  emitTransaction(data: any) 
    this.transaction.next(data);
  

事务池.component.ts

ngOnInit() 
    this._AS.transaction$.subscribe(data => 
      this.data = data;
      console.log(this.data);
    );
  

【讨论】:

确定下一步:如何在 transaction-pool.component.ts 中定义“数据”?我是否将“数据”定义为交易?以及如何将我现在获得的信息推送到数据表中?我添加了我的 transaction-pool.component.ts 的代码【参考方案3】:

在您的共享服务中,您可以:

public transaction = new Subject<any>();

emitTransaction(val) 
  this.transaction.next(val);

并且在您关闭对话框的 subribe 之后:

dialogRef.afterClosed().subscribe(
      data => this.sharedService.emitTransaction(data);
    );

在你的其他组件中:

this.sharedService.transaction.subscribe(transaction => 
    this.transaction = transaction;
  )

它应该看起来像这样。

【讨论】:

以上是关于Angular:将数据从材料对话框传递到未打开对话框的组件的主要内容,如果未能解决你的问题,请参考以下文章

禁用在角度材料对话框区域外单击以关闭对话框(使用 Angular 版本 4.0+)

如何将从服务接收到的 json 数据传递到 Angular 4 的角材料组件中的数组

从 Angular Material 2 中的 MdDialog 返回数据

我如何确定在角度材料对话框中单击了哪个按钮

如何从 ag-grid 单元格中打开模态对话框单击 Angular 6

使用子组件按钮单击关闭 Kendo Angular Dialog