angularfire2の公式ドキュメントの一部であるこの例(angularfire2 のインストールとセットアップ)に従うだけです
この例を実行すると、次のエラーが発生します。
ご覧のとおり、2 つのエラーがあります。最初のエラーは autorization に関連していると思われます。次のエラーは、正常に終了しない操作に関連していると思われます。
コードはまさに例のとおりです。データベースのルールは次のとおりです。
main.ts
import { bootstrap } from '@angular/platform-browser-dynamic';
import { enableProdMode } from '@angular/core';
import { AppComponent, environment } from './app/';
import { FIREBASE_PROVIDERS, defaultFirebase } from 'angularfire2';
if (environment.production) {
enableProdMode();
}
bootstrap(AppComponent,[
FIREBASE_PROVIDERS,
defaultFirebase({ //this data is replace with false data
apiKey: "apiKey",
authDomain: "localhost",
databaseURL: "https://databaseUrl/",
storageBucket: "gs://storageBucket",
})
]);
app.component.ts
import { Component } from '@angular/core';
import { AngularFire, FirebaseListObservable } from 'angularfire2';
@Component({
moduleId: module.id,
selector: 'app-root',
templateUrl: 'app.component.html',
styleUrls: ['app.component.css']
})
export class AppComponent {
title = 'app works!';
heroes : FirebaseListObservable<any[]>;
constructor(af: AngularFire) {
this.heroes = af.database.list('SuperHeroes');
}
}
app.component.html
<h1>
{{title}}
</h1>
<ul *ngFor="let hero of heroes | async">
<li class="text">
{{hero.name}}
</li>
</ul>
問題について何か考えはありますか?