gpt4 book ai didi

node.js - 更新字典中的“/”在 firebase 中引发错误

转载 作者:太空宇宙 更新时间:2023-11-04 03:02:47 24 4
gpt4 key购买 nike

我正在使用在 http 端点上触发的云函数在 firebase 上进行数据库迁移。我基本上是通过数据库并组装更新字典,然后调用 ref().update(dict)。我以前做过这个,没有任何问题,但由于新的数据库结构,我需要做类似的事情

teamUpdates['/calendar/' + visibleMonths[month] + '/' + matchId] = minifiedEvent

问题在于,由于某种原因,firebase 没有将“/”解析为路径,因此给了我一个错误:

First argument contains an invalid key (/calendar/February 2018/-L5n0GL4OjV3fnRg2wYV). Keys must be non-empty strings and can't contain ".", "#", "$", "/", "[", or "]".

在文档中它使用“/”字符来定义路径,并且我之前已经成功使用过它,所以我不知道问题是什么。有什么想法吗?

这就是他们在文档中所做的:

var updates = {};
updates['/posts/' + newPostKey] = postData;
updates['/user-posts/' + uid + '/' + newPostKey] = postData;

我认为正在发生的事情是,我有一个函数返回一个包含一些更新的对象,然后将其添加到第二个更新对象(只是为了让我的函数更干净,我在另一个函数中构建该对象并返回它)。像这样的事情:

// This function returns the 'teamUpdates' object
const team = teamMigration(data[teamId])
// This is the dictionary that database.ref().update() gets called with
updates['/teams/' + teamId] = team

更新1:我重构了代码以废弃整个“teamUpdates”字典并直接将所有内容嵌套在updates['/teams/' + teamId]下。

看起来很丑但是有用!问题似乎是 firebase 不会将第一级之后的“/”解析为路径,而是将它们视为键,这显然失败了。

在我回答问题之前,我会等着看 Firebase 团队成员是否验证了这一点。感谢大家的帮助!

最佳答案

此代码是对 @Frank 示例的修改,用于演示 @kylar13 使用的更新对象构造样式。此操作失败并出现“无效 key ”错误:

  var db = admin.database();
var ref = db.ref("50281844");
var updates = {};
updates['posts/newPostKey'] = "newKeyValue";
// create a child map with '/' in key
var subUpdate = {};
subUpdate['uid/newPostKey'] = "newKeyValue";
// add it to the update map
updates['user-posts'] = subUpdate;

ref.update(updates)

@kylar13:正如您在帖子更新中指出的那样,对象键中的 / 似乎只能位于根级对象中,而不能位于子对象中。也许弗兰克会看一下并确认。

关于node.js - 更新字典中的“/”在 firebase 中引发错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50281844/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com