我想从我的实时数据库中删除一个节点(〜13mb)。我将cli与firebase database:remove '/node'
一起使用,但得到An unexpcted error
。调试文件显示:
[debug] [2020-09-30T10:17:16.845Z] TypeError [ERR_INVALID_ARG_TYPE]: The "url" argument must be of type string. Received undefined
at validateString (internal/validators.js:122:11)
at Url.parse (url.js:159:3)
at urlParse (url.js:154:13)
at Url.resolve (url.js:667:29)
at Object.urlResolve [as resolve] (url.js:663:40)
at Object.getDatabaseUrl (/usr/local/lib/node_modules/firebase-tools/lib/utils.js:62:26)
at Command.actionFn (/usr/local/lib/node_modules/firebase-tools/lib/commands/database-remove.js:33:32)
at Command.<anonymous> (/usr/local/lib/node_modules/firebase-tools/lib/command.js:166:25)
at Generator.next (<anonymous>)
at fulfilled (/usr/local/lib/node_modules/firebase-tools/lib/command.js:5:58)
at processTicksAndRejections (internal/process/task_queues.js:93:5)
当我执行firebase database:get '/node'
时,我得到了正确的值。
我已经更新了firebase-tools并进行了新的初始化。
答案 0 :(得分:0)
我今天遇到了类似的问题,并将其作为问题提交到了Firebase-tools GitHub:
https://github.com/firebase/firebase-tools/issues/2667
我手动向数据库中添加了一个琐碎的密钥,而firebase database:remove
在尝试删除它时遇到了同样的问题。
希望那里的其他人可以复制并解决它。
(如果我有代表,我会对此进行评论……但是也许看着问题在那里得到解决,反正是真正的答案?)
编辑:已将Changelog for database:remove command fix #2658合并到母版中并在version 8.12.0中发布- 效果很好?