1
Hello, if anyone can help me thank you.
To get data from a given node in Firebase we specify the node the code will use for reference, for example:
The reference will be: "food/fruit"
With this I can use the methods to get the "fruit" value itself or the children of this node that could be "orange" using the Child or even the child of "orange", which can be "sour orange" using the Children method. So far everything ok. but and when we store the data in a node that was inserted using push()
? with this method the generated node will have a random name so how can I insert this random value within .chil("nome aleatório gerado e que desconheço")
?