AngularJS 1,Ng-repeat,来自firebase的数组

时间:2016-09-06 17:25:47

标签: angularjs firebase firebase-realtime-database ng-repeat

我有重大问题要从firebase重复我的数据。我有一个包含Firebase数据的数组,但我不能以某种方式重复它。

我的循环:

for (i = 1; i < snapshot.numChildren(); i++) {

    var _lat = snapshot.child(i).child('Geo').child(0).val();
    var _long = snapshot.child(i).child('Geo').child(1).val();
    var _Title = snapshot.child(i).child('Title').val();

    filler[i] = snapshot.child(i).val();
}

&#39;填料&#39; json中的数组数据:

[
  null,
  {
    "categoryId": 1,
    "Geo": [
      -7.090910999999999,
      107.668887
    ],
    "Location": [
      "West Java, Indonesia"
    ],
    "Title": "test",
    "status": "Open",
    "user": "sadawdawd4-e45a-4d7a-a9c7-83fad641aa62",
  },
  {
    "categoryId": 1,
    "Geo": [
      34.506668,
      -81.948334
    ],
    "Location": [
      "Lund null"
    ],
    "Title": "test",
    "status": "Open",
    "user": "9d12dds8-9c5f-40d9-a458-aasd3d2121d",
  }
]

我现在不知道是因为null,在开始时我也不知道为什么我会为空。

然后我在视图中执行以下操作:

ng-repeat="item in filler"

我在视图中看不到任何内容,是的,我是非常新手的,提前谢谢。

0 个答案:

没有答案