0
私はいくつかのガイダンス通知をユーザーに送信するionic2アプリケーションを作成しようとしています。通知ではなくホームページをクリックすると、特定のページにユーザーを送信します。ここ は私のコードです:ionic2通知ボタンにアクションを追加する
public schedule(title, text) {
LocalNotifications.schedule({
title,
text,
at: new Date(new Date().getTime() + 1* 1000)
});
}
LocalNotifications.on("click", (notification, state) => {
let alert = this.alertCtrl.create({
title: this.todos[this.num].info.nom_du_musee,
subTitle: this.todos[this.num].info.periode_ouverture+" "+this.todos[this.num].info.adr+" site web "+this.todos[this.num].info.sitweb,
buttons: ["OK"]
});
alert.present()
});
}