Firebase数据库($ {JSCORE_VERSION})内部提示失败:Reference.ts尚未加载。在角度6应用中

时间:2018-10-01 09:03:30

标签: firebase firebase-realtime-database angular6 angularfire2

我正在开发angular 6最新版本。我为数据库安装了angularfire2。它的工作正常。但是在IE9和IE10上显示错误。

Firebase Database (${JSCORE_VERSION}) INTERNAL ASSERT FAILED: Reference.ts has not been loaded

版本-

"@angular/fire": "^5.0.2"

"firebase": "^5.5.2",

请告诉我如何解决错误。

1 个答案:

答案 0 :(得分:0)

您需要发布代码,但显然文件Reference.ts无法加载。

默认情况下,AngularFire使用src / environment / environment.ts作为Firebase数据库信息

export const environment = {
  production: false,
  firebase : {
    apiKey: "xxxx",
    authDomain: "xxx.firebaseapp.com",
    databaseURL: "https://xxx.firebaseio.com",
    projectId: "xxx",
    storageBucket: "xxx.appspot.com",
    messagingSenderId: "xxx"
 }


};

然后您将在src / app / app.modules.ts

中引用它
  imports: [
    AngularFireModule.initializeApp(environment.firebase),
    AngularFirestoreModule,
    AngularFireDatabaseModule,