Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

delete file firebase angular

constructor(private afs: AngularFirestore, private storage: AngularFireStorage) { 
      this.clientsCollection = this.afs.collection('clients', ref => ref.orderBy('uid', 'asc'));;
  }

   deleteClient(client, callback){
    this.storage.ref(client.uid).delete();
  }
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #delete #file #firebase #angular
ADD COMMENT
Topic
Name
8+8 =