Firebase控制台:如何删除表格?

时间:2016-11-09 19:16:27

标签: firebase firebase-realtime-database firebase-console

我注意到当firebase中包含大量数据时,firebase没有显示删除表的按钮:

我的location-orders表中包含大量数据:

enter image description here

与我的users表相对,其中包含1个内容:

enter image description here

如何删除locations-orders表?

3 个答案:

答案 0 :(得分:3)

当我的数据库很大时使用 x 并不是那么有用(说实话,出于某种原因,它不会出现在我的行​​数之后)。

因此,我发现的最简单方法是使用firebase cli

首先使用npm install -g firebase-tools

安装它(您需要安装node.js)

使用firebase login登录您的firebase项目。

删除数据:

firebase database:remove / --project your-project-id

/这里是要删除的数据的位置,因此您需要:

firebase database:remove /locations-orders --project your-project-id

答案 1 :(得分:0)

鉴于数据量,您的数据库仪表板已切换到静态,只读模式。您无法在此模式下修改数据,因此必须先返回交互模式。

如果您点击location-orders,您将获得一个从该级别开始的视图。

在这个新视图中,您将看到 x 超过location-orders。单击 x ,删除location-orders

答案 2 :(得分:-1)

您可以使用邮递员或一些辅助工具来执行api并使通话停止:

postman image

在它返回到Firebase数据库中并很快就可以删除其表之后。