使用AngularFire通过ID Firebase重新搜索项目

时间:2015-08-21 20:17:40

标签: angularjs firebase angularfire

我试图搜索带有ID的项目,但我收到此消息。所有功能都正常工作。执行时我收到此错误:

  

使用Firebase中的数组索引存储数据可能会导致意外   行为。看到   https://www.firebase.com/docs/web/guide/understanding-data.html#section-arrays-in-firebase   了解更多信息。

我的工厂

.factory('TEST', function ($firebaseArray) {

    var ref = new Firebase('https://shark-firebase.firebaseio.com');

    return {
        all: function(section) {
            var data = $firebaseArray(ref.child(section));
            return data;
        },
        get: function(section, id) {
            var data = $firebaseArray(ref.child(section).child(id));
            return data;
        }
    };
});

我一起尝试:

        get: function(section, id) {
            var data = $firebaseArray(ref.child(section));
            return data.$getRecord(id);
        }

和我的控制者:

万一,$ stateParams.section ='发布'和$ stateParams.id =' 0'。

$scope.loadItem = function(){
    $scope.item = TEST.get($stateParams.section, $stateParams.id);
};

1 个答案:

答案 0 :(得分:5)

以下是获取该项目的一种方法:

var app = angular.module('app', ['firebase']);

app.factory('TEST', function ($firebaseArray, $firebaseObject) {

    var ref = new Firebase('https://shark-firebase.firebaseio.com');

    return {
        all: function(section) {
            var data = $firebaseArray(ref.child(section));
            return data;
        },
        get: function(section, id) {
            var data = $firebaseObject(ref.child(section).child(id));
            return data;
        }
    };
});

app.controller('MainCtrl', function($scope, TEST) {
    $scope.item = TEST.get('posts', 0);
});

请参阅此jsbin以了解其工作情况:http://jsbin.com/tumape/edit?html,js,output

但请仔细阅读您所链接的消息中的页面,因为它指出了当前数据结构中的一些可扩展性限制问题。

  1. 在集合上使用数组索引
  2. 嵌套数组
  3. 忽略这些考虑因素,今天开始可能更容易,但是你限制了你的应用程序扩展的程度。