gpt4 book ai didi

Firebase:更新 key ?

转载 作者:行者123 更新时间:2023-12-03 00:54:21 25 4
gpt4 key购买 nike

{ 
43268jfjn7983-347983:
{
title: 'hello world',
time: '1000'
}
}

如上所述,我只想将 43268jfjn7983-347983 更新为其他内容,这在 firebase 中可能吗?

最佳答案

无法更改现有节点的 key 。

所以我会选择:

var ref = new Firebase('https://my.firebaseio.com/');
var child = ref.child('43268jfjn7983-347983');
child.once('value', function(snapshot) {
ref.child('somethingElse').set(snapshot.val());
child.remove();
});

关于Firebase:更新 key ?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29115990/

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