How to rename nodes in Firebase from Unity

前端 未结 1 1954
猫巷女王i
猫巷女王i 2020-12-12 06:56

I am using Firebase-Unity beta tool for real time data in my app. I want to change node names in the tree without override its children. For example:

    IFi         


        
相关标签:
1条回答
  • 2020-12-12 07:30

    The Firebase Database has no way to rename an existing node.

    Most developers accomplish a rename by inserting a copy of the node with the new name and then deleting the old node.

    0 讨论(0)
提交回复
热议问题