gpt4 book ai didi

firebase - firebaseRef.push() 与 angularfire 的等价物是什么?

转载 作者:行者123 更新时间:2023-12-04 04:12:12 24 4
gpt4 key购买 nike

在下面的非 angularfire 伪代码中,我希望 firebase 为被推送的新数据生成一个 key 。

var ref = Firebase(...);
var newref = ref.push({"blah":"blah"});
var autoKey = newref.name();

我尝试通过 angularfire 使用绑定(bind)模型做同样的事情,但它只是给我关于对象没有 push() 的错误方法,类似于 this question .当数据类型是数组时,他就可以工作了。

如何获得我在常规 Firebase(非 angularFire)中看到的带有对象自动键的良好行为?

最佳答案

如果你想使用一个对象并且有自动生成的键,使用 add angularFireCollection 上的方法.例如:

function ExampleController($scope, angularFireCollection) {
var url = 'https://angularFireExample.firebaseio-demo.com/';
$scope.examples = angularFireCollection(url);
$scope.addExample = function(ex) {
$scope.examples.add(ex);
};
}

关于firebase - firebaseRef.push() 与 angularfire 的等价物是什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16532897/

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