0
在離子推送文檔中,我無法找到捕捉用戶點擊的方法。我嘗試了下面的代碼,但它不起作用。任何想法?離子推送通知點擊功能
var push = new Ionic.Push({
"debug": true
});
push.register(function(obj) {
//save to db
});
push.notificationCallback(function(data){
console.log(data); // doesn't work
})
的可能的複製[如何發送/從離子移動應用程序接收推送通知?(https://stackoverflow.com/questions/ 28004158 /如何對發送 - 接收 - 推通知-從離子的移動應用內) –