1
内のクッキーを使用ngCookiesProvider <を - ngCookies < - checkLoginService角度: 不明なプロバイダ::私はカスタムサービスで角度クッキーを使用しようとしましたが、エラーましカスタムサービス
は、私は別のファイル内のモジュール、コントローラおよびサービスを保存します。
コントローラー:
(function() {
'use strict';
angular
.module('app')
.controller('AuthController', AuthController);
AuthController.$inject = ['$scope', '$http', '$location', 'checkLoginService'];
function AuthController($scope, $http, $location, checkLoginService) {
/* jshint validthis:true */
var vm = this;
vm.title = 'AuthController';
$scope.login = function(user) {
/*logic*/
}
$scope.checklogin = function() {
if (checkLoginService.checkLogin()) {
/*logic*/
}
}
$scope.checklogin();
}
})();
サービス:
(function() {
'use strict';
angular
.module('app')
.service('checkLoginService', ['ngCookies', checkLoginService]);
checkLoginService.$inject = ['$http'];
function checkLoginService($http, $cookies) {
return {
checkLogin: function() {
/*logic*/
}
}
}
})();