我正在开发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",
请告诉我如何解决错误。
答案 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,