我正在开发一个使用 OnsenUI 作为 UI 的移动应用程序,在 Monaca / Cordova 框架内运行,通过 angularfire 模块使用 Firebase 作为 BaaS。
我已经设置了没有 Firebase 的模块,如下所示:
var myAppController = angular.module('myApp', ['onsen.directives']);
myAppController.controller('EventListCtrl', ['$scope', function($scope) {
但是,一旦我将 Firebase 添加为模块,该应用程序就会停止工作。
var myAppController = angular.module('myApp', ['onsen.directives', 'firebase']);
myAppController.controller('EventListCtrl', ['$scope', '$firebase', function($scope, $firebase) {
你能告诉我我做错了什么吗?
谢谢