我正在使用Chrome编写FCM。
以下代码可以正常使用。
this.messaging.requestPermission()
.then(() => { ... })
但是在获得许可之后,当我想获得令牌时,getToken()没有返回任何内容。它不会调用.then()甚至.catch()。
this.messaging.getToken()
.then( t => console.log(t) )
.catch( e => console.error(e) );
请帮帮我。