【发布时间】:2019-03-28 12:47:19
【问题描述】:
我想使用 angular 将数组数据传递给 Matdialog,对于单个数据它可以工作,但如何传递数组数据。
我调用对话框的组件
distributor-order.component.ts
openDialog(address, city, pin, phone, orderid, orderstatus, totalprice, updateby, updatedate): void {
console.log(address);
const dialogRef = this.dialog.open(OrderDialogComponent, {
width: '1000px',
data: {
Address: address,
City: city,
Pin: pin,
phone:phone,
Orderid: orderid,
Orderstatus: orderstatus,
Totalprice: totalprice,
Updateby: updateby,
Updatedate: updatedate
}
});
dialogRef.afterClosed().subscribe(result => {
console.log('The dialog was closed');
//this.animal = result;
});
}
我怎样才能用这个单一的数据发送数组数据。
【问题讨论】:
标签: angular