我在推送引用上调用key()方法,但它无效。我可以看到数据已添加到我的firebase中。 这是我的代码:
function createRoom(room){
//will create a room with the json object passed into the
//function and will return the key
var roomRefRet = roomRef.child('ru').child('room').push(room);
return roomRefRet.key();
}
var roomKey=createRoom({"name":"bathroom","capacity":"1"});
我是新手,所以我可能错过了一些东西。