firebase上的批量更新与角度

时间:2015-05-03 17:16:19

标签: angularjs firebase

我的目标是在角度应用程序中更新firebase平面结构中的400000条记录。

我的控制器包含以下内容,但它没有更新结构

scanf_s()

如果有人可以解开我的大脑,我会非常高兴

最好的问候。

菲利普

1 个答案:

答案 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");}
  )