2017-03-31 12 views
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() 
     }); 




    } 

答えて

0

あなたが次のステージhttps://ionicframework.com/docs/api/components/alert/AlertController/

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: [ 
     { 
     text: 'OK', 
     handler:() => { 
      console.log('OK clicked'); 
     } 
     } 
    ] 
}); 

alert.present() 

ごとにボタンにハンドラを追加することができ、新しいページをプッシュするコードではconsole.logを交換することです。 。

this.navCtrl.push(DestinationPage); 
関連する問題