How do I export data from Firebase Realtime Database?

前端 未结 2 788
挽巷
挽巷 2020-11-29 07:15

I am developing with Firebase and have data stored in the Realtime Database. I need to share my database structure for a question here on Stack Overflow, or just take a back

2条回答
  •  时光说笑
    2020-11-29 07:31

    Data can be exported from the Firebase Realtime Database as JSON:

    1. Login to the Database section of the Firebase Console.
    2. Navigate to the node you wish to export by clicking on it in the list (skip this to export all data).
    3. Click the 3-dot overflow menu icon, at the top-right of the data panel.
    4. Click Export JSON from the menu.

    Likewise, you can import a structure in the same fashion, using Import JSON.

提交回复
热议问题