2

angular fire 2を使用してFireベースストレージから画像を取得する方法.どうもありがとう!

constructor(public af: AngularFire) {
this.items = af.database.list('/message');
this.picture = af.database.list('/profile');
}
4

2 に答える 2

7

現在、AngularFire2 および Firebase Storage との正式な統合はありません。ただし、通常の SDK を使用するのは非常に簡単です。

@Component({

})
class MyComponent {
  image: string;
  constructor() {
    const storageRef = firebase.storage().ref().child('path/image.png');
    storageRef.getDownloadURL().then(url => this.image = url);
  }
}

次に、テンプレートで

<img [src]="image" />
于 2016-07-26T16:56:06.787 に答える