我正在使用generator-gulp-angular
我添加了firebase和angularfire
bower install firebase --save
bower install angularfire --save
然后我在模块中添加了firebase,如下所示。
angular.module('myApp', ['firebase']
然后在MainController中,我定义了config并初始化如下。
vm.config = {
apiKey: "yuygjgjhghjguyfuyfuyccncvcn",
authDomain: "hjgjhghjghjg.firebaseapp.com",
databaseURL: "https://hjghjgjhghj.firebaseio.com"
};
function activate() {
getWebDevTec();
getMenu();
firebase.initializeApp(vm.config);
$timeout(function() {
vm.classAnimation = 'rubberBand';
}, 4000);
}
当我执行gulp serve
时,但我遇到了错误。
29:7 error "firebase" is not defined no-undef
你能告诉我哪里出错了。
答案 0 :(得分:1)
确保将firebase
服务注入您的控制器