当前位置: 首页>>代码示例>>TypeScript>>正文


TypeScript AngularFireStorage.ref方法代码示例

本文整理汇总了TypeScript中@angular/fire/storage.AngularFireStorage.ref方法的典型用法代码示例。如果您正苦于以下问题:TypeScript AngularFireStorage.ref方法的具体用法?TypeScript AngularFireStorage.ref怎么用?TypeScript AngularFireStorage.ref使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在@angular/fire/storage.AngularFireStorage的用法示例。


在下文中一共展示了AngularFireStorage.ref方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。

示例1: onImageChange

  onImageChange(event:any) {
    const image = event.target.files[0];
    const uploader = document.getElementById('uploader') as HTMLInputElement;
    const storageRef = this.storage.ref('images/' + Date.now() + image.name);
    const task = storageRef.put(image);

    task.snapshotChanges().subscribe((snapshot) => {
        document.getElementById('buttonFile').style.visibility = 'hidden';
        document.getElementById('uploader').style.visibility = 'visible';

        const percentage = (snapshot.bytesTransferred / snapshot.totalBytes) * 100;
        uploader.value = percentage.toString();
      },
      (err:any) => {
        document.getElementById('buttonFile').style.visibility = 'visible';
        document.getElementById('uploader').style.visibility = 'hidden';
        uploader.value = '0';
      },
      () => {
        uploader.value = '0';
        document.getElementById('buttonFile').style.visibility = 'visible';
        document.getElementById('uploader').style.visibility = 'hidden';
        this.draftMessage = task.task.snapshot.ref.name.substring(0, 13);
        this.draftImage = task.task.snapshot.ref.name.substring(0, 13);
        storageRef.getDownloadURL().subscribe(url => {
          this.draftImageDownloadURL = url;
          this.addMessage();
          event.target.value = '';
        });
      });
  }
开发者ID:PERRINN,项目名称:client-web,代码行数:31,代码来源:chat.component.ts

示例2: uploadImage

  async uploadImage(file) {
   const filePath = Date.now() + '.jpg';
   const ref = this.storage.ref('upload').child(filePath);
   const image = await ref.putString(file, 'data_url', {
     contentType: 'image/jpg'
   });
   const url = await this.getImageUrl(image);
   return url;
 }
开发者ID:niawjunior,项目名称:blog,代码行数:9,代码来源:upload-content.service.ts

示例3: it

 it('should resolve the task as a promise', (done) => {
   const data = { angular: "promise" };
   const blob = new Blob([JSON.stringify(data)], { type : 'application/json' });
   const ref = afStorage.ref('af.json');
   const task: AngularFireUploadTask = ref.put(blob);
   task.then(snap => { 
     expect(snap).toBeDefined(); 
     done();
   }).catch(done.fail);
 });
开发者ID:PaulD11,项目名称:angularfire2,代码行数:10,代码来源:storage.spec.ts

示例4: referenciaCloudStorage

 //Referencia del archivo
 public referenciaCloudStorage(nombreArchivo: string) {
   return this.storage.ref(nombreArchivo);
 }
开发者ID:castcosme,项目名称:LabWeb2019PracticasFinal,代码行数:4,代码来源:firebase-storage.service.ts

示例5: finalize

 finalize(() => this.downloadURL = this.storage.ref(path).getDownloadURL() )
开发者ID:geeksmarter,项目名称:andrews.codes,代码行数:1,代码来源:upload-page.component.ts


注:本文中的@angular/fire/storage.AngularFireStorage.ref方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。