ログイン後のページはメインページにリダイレクトされません。 $window.location
を使用すると、条件ログインの動作を確認しました。 angular-route
を使用して、ログインしていないユーザーがメインメニューにアクセスしないようにします。 $window.location
を使用すると、ユーザーはログインせずにメインメニューにアクセスできます。ここでは、ここに私のjsファイル角度経路はリダイレクトされません
app.config(function($routeProvider){
$routeProvider
.when('/',{
templateUrl:'index.html'
})
.when('/mainmenu',{
resolve:{
"check":function($location,$rootScope){
if (!$rootScope.loggedIn) {
$location.path('/');
}
}
},
templateUrl:'content/mainmenu2.html'
})
.otherwise({
redirectTo:'/'
});
});
app.controller("logincont", ['$scope','$http','$window','$rootScope','$location',function($scope,$http,$window,$rootScope,$location){
$scope.login = function() {
$http.get('http://localhost:8089/MonitoringAPI/webresources/login?a='+$scope.userid+'&d='+$scope.password).then(function(response){
$scope.reslogin = response.data;
if($scope.reslogin == null)
{
alert('Login Incorrect');
}
else
{
$rootScope.loggedIn = true;
$location.path('/mainmenu');
}
});
};
}]);
は、あなたがルート上の旗allowUnauth
を使用することによって、あなたがいないもの、それを行うことができます私のhtml
<form>
<h1 class="tengah"> Form Login </h1>
<div class="form-group">
<label for="inputId">User Id</label>
<input type="text" class="form-control" ng-model="userid" placeholder="userid" required>
</div>
<div class="form-group">
<label for="inputPassword">Password</label>
<input type="password" class="form-control" ng-model="pass" placeholder="Password" required>{{password}}
</div>
<button type="submit" class="btn btn-primary" ng-click="login()">
<span class="fa fa-sign-out"></span>Login</button>
</form>
をplunkあなたがplunk @jitender –
@AndikaRistianNugraha与えることができ、あなたの問題を作成pluker私はaccodingly – jitender
https://plnkr.co/edit/i4WzeYjPI4q6cByyv0QR?p=previewこれは修正されますを与えることができます私の大騒ぎ@jitinder –