我有以下代码:
var myRootRef = new Firebase('https://myacct.firebaseIO.com');
var collectionRef = myRootRef.child('collection');
var pushRef = collectionRef.push();
pushRef.set('item1');
pushRef.set('item2');
pushRef.set('item3');
如果我转到 url:“https://myacct.firebaseIO.com”,我只会在集合中看到“item3”。我没有看到其他两个。似乎集合对象正在被重写而不是被添加到。如果我手动输入孩子的名字,一切都会奏效。例如,以下工作:
collectionRef.child(1).set('item1');
collectionRef.child(2).set('item2');
collectionRef.child(3).set('item3');
这是一个错误,还是我在使用方式上做错了push
什么?
谢谢。