0

我正在开发一个使用 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) {

你能告诉我我做错了什么吗?

谢谢

4

2 回答 2

0

根据此链接,如何尝试这种方式:

var myAppController = angular.module('myApp', ['onsen.directives', 'firebase']);
myAppController.controller('EventListCtrl', function($scope, $firebase) {
于 2014-08-05T05:52:54.123 回答
0

以为我应该自己回答这个问题,以帮助其他面临同样情况的人。

我的问题是firebase js脚本引用是错误的。即。我粗心。

问候

于 2014-10-01T06:52:58.677 回答