TypeError: firebase.messaging is not a function in node.js

前端 未结 5 2054
我在风中等你
我在风中等你 2021-01-17 19:58

While trying to fetch the FCM messages in node.js using firebase module, following error \"TypeError: firebase.messaging is not a function\" is occurring.

v         


        
5条回答
  •  忘掉有多难
    2021-01-17 20:35

    You must included import '@firebase/messaging' for it to work. So it's supposed to look like this:

    import * as firebase from 'firebase/app';
    import '@firebase/messaging';
    

提交回复
热议问题