如何在登录后使用angularJS实现页面重定向


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("州名称");

请记住,您必须在控制器中注入这些服务。

相关内容

  • 没有找到相关文章

最新更新