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

c# - Update a combobox from a presenter (MVP) -

How to understand 2 main() functions after using uftrace to profile the C++ program? -

How to put a lock and transaction on table using spring 4 or above using jdbcTemplate and annotations like @Transactional? -