我有这个父节点,如果更改也会更新text
,我也想将 a 添加media
到父节点中。text
{
parent: {
text: 'this is content'
}
}
media
来自第三方回调的值。如何传递给update()
? 我试过{media: callbackVal}
但没有工作。
$scope.parent = angularFireCollection(firebaseRef.child('parent'));
$scope.parent.update(What_to_do_here, function(error){
//something...
});
更新
也许我的问题还不够清楚。
在 Firebase JS 中,我们可以这样做来更新或插入媒体到节点中。
new Firebase(firebaseRef).update({ media: 'value'} );
如何在 `angularFireCollection 中执行此操作?