0
var app = angular.module('app', ['firebase', 'ngCookies']);
app.factory("Auth", ["$firebaseAuth",
function($firebaseAuth) {
return $firebaseAuth();
}
]);
app.controller("ctrlHead", ["$scope", "Auth", "$cookies",
function($scope, Auth, $cookies) {
if ($cookies.get('authenticated') == null) {
$cookies.put('authenticated', false);
}
$scope.auth = Auth;
$scope.auth.$onAuthStateChanged(function(firebaseUser) {
if (firebaseUser) {
setAppCookie();
$cookies.put('authenticated', true);
} else {
$cookies.put('authenticated', false);
}
});
$scope.authenticated = $cookies.get('authenticated');
}
]);
不明なエラー:[$インジェクター:modulerr]?http://errors.angularjs.org/1.6.0/ $インジェクター/ modulerr P0 =アプリ& P1 =エラー%3A%20%... 0Lc%20(HTTP %3A%2F%2Flocalhost%3A8080%2Fpublic%2Fjs%2Fangular.js%3A21%の3A332)
私は、彼らは、デフォルトでは、角の一部と思っていましたか? – Coder1000
@ Coder1000いいえ、あなたが注射する必要がある鬱病です。 – Sajeetharan
ok、私は7分であなたの答えを受け入れることができます。 – Coder1000