对不起我的英语,我尝试从模态获取多个数据,但这不起作用。
这是modal.ts中的代码:
anadir() {
this.viewCtrl.dismiss(this.cantidad, this.idpedido, this.posicion);
}
这是第page.ts中的代码:
myModal.onDidDismiss(data => {
this.idpedido = data.idpedido;
this.cantidad = data.cantidad;
this.posicion = data.posicion;
console.log(data)
});
我得到的数据是"未定义"的,感谢您的帮助。
而不是发送三个不同的属性,您可以通过发送具有这样的三个属性的单个对象来尝试:
anadir() {
this.viewCtrl.dismiss({
idpedido: this.idpedido,
cantidad: this.cantidad,
posicion: this.posicion
});
}