web-dev-qa-db-ja.com

プロパティ「downloadURL」はタイプ「AngularFireUploadTask」に存在しません

回線に問題があります

this.downloadURL = task.downloadURL()

インポートしたのにAngularFireUploadTaskで。

    import { Component, OnInit } from '@angular/core';
    import { AuthService } from '../../core/auth.service';
    import { AngularFireStorage, AngularFireStorageReference, AngularFireUploadTask } from 'angularfire2/storage';

    import { PostService } from '../post.service';
    import { Observable } from 'rxjs/Observable';



    @Component({
      selector: 'app-post-dashboard',
      templateUrl: './post-dashboard.component.html',
      styleUrls: ['./post-dashboard.component.css']
    })
    export class PostDashboardComponent implements OnInit {

      title: string;
      image: string = null;
      content: string;

      buttonText: string = "Create Post"

      uploadPercent: Observable<number>
      downloadURL: Observable<string>

      constructor(
        private auth: AuthService,
        private postService: PostService, 
        private storage: AngularFireStorage
      ) { }

      ngOnInit() {
      }

      uploadImage(event) {
        const file = event.target.files[0]
        const path = `posts/${file.name}`
        if (file.type.split('/')[0] !== 'image') {
          return alert('only image files')
        } else {
          const task = this.storage.upload(path, file)

          this.downloadURL = task.downloadURL()

          this.uploadPercent = task.percentageChanges()
          console.log('Image Uploaded!')
          this.downloadURL.subscribe(url => this.image = url)
        }
      }

メッセージは次のとおりです。「プロパティ 'downloadURL'はタイプ 'AngularFireUploadTask'に存在しません。」.

この問題が発生しないようにするにはどうすればよいですか。

6
Redgull
  const task = this.storage.upload(path, file);
  const ref = this.storage.ref(path);
  this.uploadPercent = task.percentageChanges();
  console.log('Image uploaded!');
  task.snapshotChanges().pipe(
    finalize(() => {
      this.downloadURL = ref.getDownloadURL()
      this.downloadURL.subscribe(url => (this.image = url));
    })
  )
  .subscribe();

このビデオ から必要となるコードの実際の変更。

8
Jonathan

呼び出したいメソッドは

getDownloadURL();

こちらのページをご覧ください。

https://github.com/angular/angularfire2/blob/master/docs/storage/storage.md

ここで、メソッドのシグネチャが

getDownloadURL(): Observable<any>
1
Lynx 242

angular + firebaseを使用して画像をアップロードしているときにこのエラーが発生しました。メソッドDownloadURL()はタスクに依存しなくなったため、このエラーを解決した方法を以下に投稿します

upload(event) {
const id = Math.random().toString(36).substring(2);
this.ref = this.afStorage.ref(id);
this.task = this.ref.put(event.target.files[0]);

this.task.snapshotChanges().pipe(
  finalize(() => this.downloadURL = this.ref.getDownloadURL() ))
.subscribe();

画像のソースURLを何かにしたい場合は、次のように取得できます。

 this.task.snapshotChanges().pipe(
 finalize(() => {
  this.ref.getDownloadURL().subscribe(url => {
    console.log(url); // <-- do what ever you want with the url..
  });
}))
.subscribe();  
0
malith vitha