我不能为我的生活找出为什么我无法让Firebase在这个应用程序中工作。我一直收到错误:
Uncaught TypeError: Firebase is not a constructor
当我有:
var Firebase = require("firebase");
var ref = new Firebase("https://letspretendthisisreal.firebaseio.com");
我正在使用Electron并且羞辱我,我知道......我没有使用Angular,因为我只构建了一个仅供我使用的简单应用程序。我花了很多时间试图在网上找到答案而没有运气。你是我唯一的希望!
答案 0 :(得分:17)
最近firebase更新了他们的web SDK,它改变了一些API。您使用的语法类似于2.x API,而3.x则非常不同。检查您的package.json以查看您正在使用的版本。如果是3.x,请参阅the new docs site,了解如何使用新API初始化firebase。