我的目标是在角度应用程序中更新firebase平面结构中的400000条记录。
我的控制器包含以下内容,但它没有更新结构
scanf_s()
如果有人可以解开我的大脑,我会非常高兴
最好的问候。
菲利普
答案 0 :(得分:0)
move the obj.$save(ob.location);
outside the forEach and do something like this:
obj.$save(ob.location)
.then(
function(ref){console.log("saved");},
function(error){console.log("error");}
)