我正在使用 AngularFireStorage 构建上传图像服务。并且有问题。
没有人能告诉我订阅downloadurl的方法吗?这是我的服务:
这项服务可能会磨损?
uploadImage(image): Observable<any> {
const path = ...;
const fileRef = this.afStorage.ref(path);
const task = this.afStorage.upload(path, image);
return task.snapshotChanges().pipe(
finalize(() => {
return fileRef.getDownloadURL()
})
)
}