0
林不知道它是如何調用,但我只是想推像數據:火力地堡推多發對象的鑰匙
通過使用.push()
{
'{this_should_be_a_key}' : {
name : '',
items : {
'{this_should_be_a_key}' : {
title : ''
}
}
}
}
現在我做這樣的事情:應該不錯與承諾
ref.push({
'name' : ''
}).then(function(snapshot) {
let key = snapshot.key;
ref.child(key+'/items').push({
title : ''
});
}).catch(function(err) {
console.log(err);
});
這我有推2次,任何更簡單的方法或其可能只推一次?如..
ref.push({
'name' : '',
'items' : {
'{this_should_be_a_key}' {
'title' : ''
}
}
}).then(function(snapshot) {
alert('done');
}).catch(function(err) {
console.log(err);
});
謝謝! ,'ref.push().key'這將是唯一的ID權利? – l2aelba
是的,很多:https://gist.github.com/mikelehen/3596a30bd69384624c11 – cartant