このページの例を見る: http://firefeed.io/about.html
AngularFire を使用してリレーショナル データ (スパーク) を取得して表示する方法はありますか?
このページの例を見る: http://firefeed.io/about.html
AngularFire を使用してリレーショナル データ (スパーク) を取得して表示する方法はありますか?
angularFire の 2 つのインスタンスを作成する必要があります。1 つは現在のユーザーのスパーク ID を取得するためのもので、もう 1 つはスパーク自体を取得するためのものです。例えば:
function MyController($scope, angularFire) {
var url = "https://firefeed.firebaseio.com/users/" + $scope.userid + "/sparks";
angularFire(url, $scope, 'userSparkIDs', {});
angularFire(url, $scope, 'sparks', {});
}
そして、 を介して Speak ID にアクセスし、 を介し$scope.userSparkIDs
て実際の Spark コンテンツにアクセスできます$scope.sparks[sparkID]
。