我正在我的代码中实现$firebaseObject。但是,当我在我的控制器(或服务)中包含$firebaseObject
作为依赖项时,我会立即收到以下Angular error:
Unknown provider:
我的控制器:
angular.module('myapp.controllers-account', [])
.controller('AccountCtrl',
function($firebaseObject, $state, $anchorScroll, $location, $rootScope, $stateParams,
OtherDependencies) {
var ref = new Firebase("https://<YOUR-FIREBASE-APP>.firebaseio.com");
// download physicsmarie's profile data into a local object
// all server changes are applied in realtime
$scope.profile = $firebaseObject(ref.child('profiles').child('phsyicsmarie'));
})
删除依赖项,修复问题。发生了什么事?
注意:我已将firebase
作为依赖项放在我的模块中,因为我在其他地方使用它并且它工作正常。
答案 0 :(得分:1)