firebase - Is it possible to write data with angularfire2? -


i have installed angularfire2 , i'm able data bellow code

const users$: firebaselistobservable<any> = af.database.list('users');     users$.subscribe(       val => console.log(val)     ); 

the question how write data?


Comments

Popular posts from this blog

Retrieving ETA (estimated time of arrival) with Google Distance Matrix API and public transit as transport mode -

android - ConstraintLayout: Realign baseline constraint in case if dependent view visibility was set to GONE -

c# - Populating Gridview inside Listview ItemTemplate On Web User Control from Code Behind -