firebase中的push引用上的key()

时间:2014-12-11 17:38:42

标签: firebase

我在推送引用上调用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"});

我是新手,所以我可能错过了一些东西。

0 个答案:

没有答案