0
我使用AngularFire使用AngularFire - 火力地堡對象是不確定的
npm install angularfire --save
在我app.js爲此我已經安裝AngularFire故宮的方式添加以下
require('angularfire');
angular.module('app', [ 'ui.router', 'firebase' ])
.constant('FirebaseUrl', 'https://<my-app>.firebaseio.com/'));
而且我創建我嘗試注入Firebase對象的指令。
'use strict';
var chatDirective = function() {
return {
restrict : 'E',
template : require('./chat.tpl.html'),
controller: ['$state', 'AuthService', 'firebase',
function($state, AuthService, firebase) {
}]
}
};
在運行此操作時,我將指令中的Firebase對象的值設置爲undefined。我錯過了什麼嗎?