How can i give a custom key instead of thos -Lw6e****
I dont want those Lw6e***** names
This is my code and I am out of idea ..
db.child("users").push({"key":"value"})
How can i give a custom key instead of thos -Lw6e****
I dont want those Lw6e***** names
This is my code and I am out of idea ..
db.child("users").push({"key":"value"})
Use set() instead of push() if you want to provide your own node name. You will to build a reference to that node first, then call set() with the data to apply to that node.