遵循 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);
}
);