を使用してアラートを表示しています
import {Alert, NavController} from 'ionic/ionic';
.............
var alert = Alert.create({ .....
.....
});
nav.present(alert)
console.log('fooo'); //This gets executed before 'ok' is clicked or the alert is closed
表示されますが、一般的なアラートのように次の行の実行が停止されません。回避策はありますか?