1
ref.child('user').on('child_added',function())
を使用して、ユーザの中身を配列変数に格納できますか?Firebase、配列変数へのスナップショットデータの保存
だから、これは私の例で、
$scope.samplearray = [];
ref.child('user').on("child_added", function(snapshot) {
$scope.samplearray.name = snapshot.val().name;
$scope.samplearray.age = snapshot.val().age;
});
は、Firebaseデータベース内ng-repeat
私の答えは役に立ちましたか? –