So greifen Sie von Firebase in Angular auf wichtige Daten von Firebase zu
getAll(){
return this.db.list('/products').snapshotChanges()
.pipe(
map(object => {
console.log(object);
return object;
})
);
}
Farwa Miraj