2017-07-26 56 views

回答

0

在創建本地通知時,您需要將auto_cancel添加爲false。 (默認爲真)

FCM.presentLocalNotification({ 
      id: "UNIQ_ID_STRING",   
      title: "My Notification Title", 
      body: "My Notification Message", 
      sound: "default",  
      priority: "high",  
      click_action: "ACTION",  
      auto_cancel: false,   
      large_icon: "ic_launcher",   
      icon: "ic_launcher",        
      big_text: "Show when notification is expanded", 
      sub_text: "This is a subText",   
      vibrate: 300,    
      wake_screen: true,  
      group: "group", 
      picture: "https://google.png", 
      show_in_foreground 
     });