0
我有一個登錄應用程序,在這裏我需要使用會話和cookie使用angular.js.我在下面解釋我的代碼。使用angular.js管理用戶登錄中的會話和cookie
loginController.js:
var loginAdmin=angular.module('Channabasavashwara');
loginAdmin.controller('loginController',function($scope,$http,$location){
$scope.user_name = '';
$scope.user_pass = '';
$scope.user_login=function(){
if($scope.user_name==''){
alert('user name filed should not keep blank');
}else if($scope.user_pass==''){
alert('password filed should not keep blank');
}else{
var userData={'user_name':$scope.user_name,'user_pass':$scope.user_pass};
console.log('user',userData);
$http({
method: 'POST',
url: "php/Login/login.php",
data: userData,
headers: { 'Content-Type': 'application/x-www-form-urlencoded' }
}).then(function successCallback(response){
console.log('response',response);
alert(response.data['msg']);
$location.path('dashboard');
},function errorCallback(response) {
alert(response.data['msg']);
});
}
}
});
這裏我的要求是,當用戶將在成功的會議將存儲在時登錄註銷它將move.Similarly餅乾將一些過期存儲時間過後(lets say 10 min
),它會自動註銷一個警報消息。請幫助我。
@ Sarjan:我會用這個,後來通知你。 – satya