1

遵循 nativescript-plugin-firebase 自述文件中提到的步骤后出现此错误。

JS:firebase.init 错误:TypeError:无法读取未定义的属性“数据库”

https://github.com/EddyVerbruggen/nativescript-plugin-firebase

但我不太明白,也不知道如何解决。

我使用的插件版本是:6.4.0 和 tns 4.1.2

编辑:初始化代码,来自 app.js

var firebase = require("nativescript-plugin-firebase");
firebase.init({ persist: true
    // Optionally pass in properties for database, authentication and cloud messaging,
    // see their respective docs.
}).then(
    function (instance) {
    console.log("firebase.init done");
    },
    function (error) {
    console.log("firebase.init error: " + error);
    }
);
4

1 回答 1

0

我终于通过 CLI 手动安装插件解决了这个问题(我最初是通过 NativeScript sidekick 安装的)显然他们没有考虑到某些插件可能需要一些用户输入来编写特定的配置文件(哪个 nativescript-plugin- firebase),因此通过手动安装它,我必须提供所需的用户输入,它已配置并且可以正常工作!

于 2018-07-13T16:15:47.520 回答