有什么方法可以监听离子模态的onshow事件?
我的示例代码:
TABLE A
Productid price groupId
1 100 A
2 99 A
3 0 A
4 50 B
5 49 B
6 0 B
在我的课堂上是这样的:
TABLE A after update
Productid price groupId
1 100 A
2 99 A
3 100 A
4 50 B
5 49 B
6 49 B
编辑:我尝试在组件上使用 update 'Table A' t1
join (select price ,groupId from 'table A' where Price > 0 group by
groupId) as t2
on t1.groupId = t2.GroupId
SET t1.Price = t2.Price
(conn=58292) Can't reopen table: 'Table A'
方法,但是在显示组件时该方法不会执行
答案 0 :(得分:1)
您可以执行以下操作。在模态组件中,当您关闭模态时,请在此处处理计数器:
async closeModal() {
await this.modalCtlr.dismiss();
this.counter + 1; // Put your logic here, and pass it up the chain
this.navCtlr.navigateRoot(`/main`);
}