2

ランダムなエラーが発生する場合があり、発生する場合と発生しない場合があります。修正すべき問題を特定できません。

エラーの原因または防止方法を知っている人はいますか?

私のコード:

angular.module('VigiApp').controller('FeedsController', ['$scope', 'gettextCatalog', 'FirebaseURL', '$ngBootbox', function($scope, gettextCatalog, FirebaseURL, $ngBootbox) {
    $scope.contents = [];
    isSpinnerBar(false);

    $scope.init = function(){
        isSpinnerBar(true);
        // Get a database reference to our posts
        //auth
        var fbAuth = FirebaseURL.getAuth();
        //Ref
        var norm = new Firebase.util.NormalizedCollection(
                FirebaseURL.child('contents'),
                [FirebaseURL.child('categories'), 'category', 'contents.category_id']
        );
        // get a reference we can use like a normal Firebase instance
        ref = norm.select('contents.category_id', 
                'contents.dt_created', 
                'contents.num_comment', 
                'contents.num_favorite', 
                'contents.text', 
                'contents.photos', 
                'contents.user_id', 
                {key: 'category.name.$value', alias: 'category_name'},{key: "category."+$scope.currentLanguage+".$value", alias: 'category_name_language'},{key: 'category.icon.$value', alias: 'category_icon'}).ref();        
        // Attach an asynchronous callback to read the data at our posts reference
        ref.orderByChild("dt_created").limitToFirst(2).on("value", function(snapshot) {
            console.log(snapshot.val());
            var res = snapshot.val();
            $scope.$apply(function() {
                $scope.contents = res;
                isSpinnerBar(false);
                isButtonActivedFeed();
              });           
        }, function (errorObject) {
            console.log("The read failed: " + errorObject.code);
            isSpinnerBar(false);
        });     
    }

    $scope.share = function(e){
    }
}]);

警告:

FIREBASE WARNING: Exception was thrown by user callback. Error: [$rootScope:inprog] http://errors.angularjs.org/1.4.7/$rootScope/inprog?p0=%24digest
 ....

付属ここに画像の説明を入力

例外: 添付ここに画像の説明を入力 =(

4

1 に答える 1