1

nativescript-plugin-firebase readme ファイルに記載されている手順に従った後、このエラーが発生します。

JS: firebase.init エラー: TypeError: 未定義のプロパティ 'データベース' を読み取れません

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

しかし、私はそれを本当に理解していないし、それを解決する方法も知りません。

使用しているプラ​​グインのバージョンは次のとおりです: 6.4.0 with 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サイドキックを介してインストールしました)、特定の構成ファイル(nativescript-plugin- firebase)、手動でインストールすることで、必要なユーザー入力を提供する必要があり、構成され、機能しました!

于 2018-07-13T16:15:47.520 に答える