ionic push 사용할때 TypeError cannot call method 'on'of undefined 발생시
ionic push를 사용중에
try {
push.register(function(token) {
console.log("Device token:",token.token);
push.saveToken(token); // persist the token in the Ionic Platform
});
} catch(e) {
alert(e);
}
를 해 봤을 때
TypeError cannot call method 'on'of undefined
라는 에러메시지를 만날때가 있다.
gcm 번호가 빠져서 그렇다.
ionic config set gcm_key <your-gcm-project-number>
로 세팅해주자.
'IT > ionic' 카테고리의 다른 글
ionic 에서 urlRouterProvider.otherwise 가 제대로 동작하지 않을때 (0) | 2016.11.19 |
---|---|
ionic 에서 안드로이드 마켓으로 바로 연결하고 싶을때 (0) | 2016.09.17 |
ionic browser 에러 발생시 해결방법 (1) | 2016.09.15 |
크롬 cross domain 무시하기 (3) | 2016.09.05 |
아이오닉 에서 되는것과 안되는 것들 (0) | 2016.09.04 |