if ($scope.IsFormValid) {
return $http({
url: '/User/UserLogin',
method: 'POST',
data: JSON.stringify($scope.User),
headers: { 'content-type': 'application/json' }
}).success(function (d) {
$location.path('/here'); //how to use redirection here after success
})
.error(function (data) {
$scope.LoginErrorMessage = "There was a problem logging in: " ;
});
}
$window.location.href = '/here.html';
您可能还需要将$窗口注入控制器中。
使用其中任何一个都可以实现。
$window.location.html='/here.html';(如上所述)
或
$location.path("您的路径");
或
$state.go("州名称");
请记住,您必须在控制器中注入这些服务。