Theoretical Paper
- Computer Organization
- Data Structure
- Digital Electronics
- Object Oriented Programming
- Discrete Mathematics
- Graph Theory
- Operating Systems
- Software Engineering
- Computer Graphics
- Database Management System
- Operation Research
- Computer Networking
- Image Processing
- Internet Technologies
- Micro Processor
- E-Commerce & ERP
Practical Paper
Industrial Training
Firebase - Write Data
In this chapter, we will show you how to save your data to Firebase.
Set
The set method will write or replace data on a specified path. Let us create a reference to the player’s collection and set two players.
var playersRef = firebase.database().ref("players/"); playersRef.set ({ John: { number: 1, age: 30 }, Amanda: { number: 2, age: 20 } });
We will see the following result.
Update
We can update the Firebase data in a similar fashion. Notice how we are using the players/john path.
var johnRef = firebase.database().ref("players/John"); johnRef.update ({ "number": 10 });
When we refresh our app, we can see that the Firebase data is updating.