如何使用AngularJS重定向到另一个页面?


171

我正在使用ajax调用在服务文件中执行功能,并且如果响应成功,我想将页面重定向到另一个URL。目前,我正在通过使用简单的js“ window.location = response ['message'];”来做到这一点。但是我需要用angularjs代码替换它。我看过关于stackoverflow的各种解决方案,他们使用了$ location。但是我是新手,对实现它有困难。

$http({
            url: RootURL+'app-code/common.service.php',
            method: "POST",
            headers: {'Content-Type': 'application/x-www-form-urlencoded'},
            dataType: 'json',
            data:data + '&method=signin'

        }).success(function (response) {

            console.log(response);

            if (response['code'] == '420') {

                $scope.message = response['message'];
                $scope.loginPassword = '';
            }
            else if (response['code'] != '200'){

                $scope.message = response['message'];
                $scope.loginPassword = '';
            }
            else {
                window.location = response['message'];
            }
            //  $scope.users = data.users;    // assign  $scope.persons here as promise is resolved here
        })

2
为什么您需要为此使用角度?有什么具体原因吗?document.location是正确的方法,可能比角度方法更有效
casraf 2015年

Answers:


230

您可以使用Angular $window

$window.location.href = '/index.html';

Contoller中的示例用法:

(function () {
    'use strict';

    angular
        .module('app')
        .controller('LoginCtrl', LoginCtrl);

    LoginCtrl.$inject = ['$window', 'loginSrv', 'notify'];

    function LoginCtrl($window, loginSrv, notify) {
        /* jshint validthis:true */
        var vm = this;
        vm.validateUser = function () {
             loginSrv.validateLogin(vm.username, vm.password).then(function (data) {          
                if (data.isValidUser) {    
                    $window.location.href = '/index.html';
                }
                else
                    alert('Login incorrect');
            });
        }
    }
})();

1
我使用了$ window.location.href,但是它给出了未定义函数$ window.location的错误。我是否需要包括任何依赖关系?
Farjad Hasan 2015年

3
不,但是您可能需要将$ window注入到控制器中。看到我编辑的答案。
Ewald Stieger,2015年

2
它的window.location.href不是$ window.location.href
2015年

3
@ user3623224 -它不是,实际上)

12
@Junaid window.location.href用于传统的窗口对象,$ window.location.href用于AngularJS $ window对象,在这里:docs.angularjs.org/api/ng/service/$window
Mikel Bitson

122

您可以通过其他方式重定向到新的URL。

  1. 您可以使用$ window来刷新页面
  2. 您可以“留在”单页应用程序中并使用$ location,在这种情况下,可以在$location.path(YOUR_URL);或之间进行选择$location.url(YOUR_URL);。因此,这两种方法之间的基本区别在于,它$location.url()还会影响get参数,而$location.path()不会影响。

我建议阅读文档$location$window这样您就可以更好地了解它们之间的区别。


15

$location.path('/configuration/streaming'); 这将起作用...在控制器中注入定位服务


13

我使用下面的代码重定向到新页面

$window.location.href = '/foldername/page.html';

并将$ window对象注入到我的控制器函数中。


12

它可能会帮助您!

AngularJs代码示例

var app = angular.module('app', ['ui.router']);

app.config(function($stateProvider, $urlRouterProvider) {

  // For any unmatched url, send to /index
  $urlRouterProvider.otherwise("/login");

  $stateProvider
    .state('login', {
      url: "/login",
      templateUrl: "login.html",
      controller: "LoginCheckController"
    })
    .state('SuccessPage', {
      url: "/SuccessPage",
      templateUrl: "SuccessPage.html",
      //controller: "LoginCheckController"
    });
});

app.controller('LoginCheckController', ['$scope', '$location', LoginCheckController]);

function LoginCheckController($scope, $location) {

  $scope.users = [{
    UserName: 'chandra',
    Password: 'hello'
  }, {
    UserName: 'Harish',
    Password: 'hi'
  }, {
    UserName: 'Chinthu',
    Password: 'hi'
  }];

  $scope.LoginCheck = function() {
    $location.path("SuccessPage");
  };

  $scope.go = function(path) {
    $location.path("/SuccessPage");
  };
}

6

在AngularJS中,您可以使用以下方法将表单(提交时)重定向到其他页面window.location.href='';

postData(email){
    if (email=='undefined') {
      this.Utils.showToast('Invalid Email');
    } else {
      var origin = 'Dubai';
      this.download.postEmail(email, origin).then(data => { 
           ...
      });
      window.location.href = "https://www.thesoftdesign.com/";      
    }
  }

只需尝试以下操作:

window.location.href = "https://www.thesoftdesign.com/"; 

4

我也遇到了在角度应用程序中重定向到其他页面的问题

您可以$window按照Ewald在他的答案中建议的方式添加,或者,如果您不想添加$window,只需添加一个超时,它就会起作用!

setTimeout(function () {
        window.location.href = "http://whereeveryouwant.com";
    }, 500);

2

我使用的简单方法是

app.controller("Back2Square1Controller", function($scope, $location) {
    window.location.assign(basePath + "/index.html");
});

2

一个很好的方法是使用$ state.go('statename',{params ...})在不需要重新加载和引导整个应用程序配置和东西的情况下,对用户体验来说更快,更友好

(function() {
    'use strict';

    angular
        .module('app.appcode')
        .controller('YourController', YourController);

    YourController.$inject = ['rootURL', '$scope', '$state', '$http'];

    function YourController(rootURL, $scope, $state, $http) {

        $http({
                url: rootURL + 'app-code/common.service.php',
                method: "POST",
                headers: {'Content-Type': 'application/x-www-form-urlencoded'},
                dataType: 'json',
                data:data + '&method=signin'

            }).success(function (response) {
                if (response['code'] == '420') {

                    $scope.message = response['message'];
                    $scope.loginPassword = '';
                } else if (response['code'] != '200') {

                    $scope.message = response['message'];
                    $scope.loginPassword = '';
                } else {
                    // $state.go('home'); // select here the route that you want to redirect
                    $state.go(response['state']); // response['state'] should be a route on your app.routes
                }
            })
    }

});

//路线

(function() {
    'use strict';

    angular
        .module('app')
        .config(routes);

    routes.$inject = [
        '$stateProvider',
        '$urlRouterProvider'
    ];

    function routes($stateProvider, $urlRouterProvider) {
        /**
         * Default path for any unmatched url
        */
        $urlRouterProvider.otherwise('/');

        $stateProvider
            .state('home', {
                url: '/',
                templateUrl: '/app/home/home.html',
                controller: 'Home'
            })
            .state('login', {
                url: '/login',
                templateUrl: '/app/login/login.html',
                controller: 'YourController'
            })
            // ... more routes .state
   }

})();

0
 (function () {
"use strict";
angular.module("myApp")
       .controller("LoginCtrl", LoginCtrl);

function LoginCtrl($scope, $log, loginSrv, notify) {

    $scope.validateUser = function () {
        loginSrv.validateLogin($scope.username, $scope.password)
            .then(function (data) {
                if (data.isValidUser) {
                    window.location.href = '/index.html';
                }
                else {
                    $log.error("error handler message");
                }
            })
    }
} }());

0

如果要使用链接,则:在html中具有:

<button type="button" id="btnOpenLine" class="btn btn-default btn-sm" ng-click="orderMaster.openLineItems()">Order Line Items</button>

在打字稿文件中

public openLineItems() {
if (this.$stateParams.id == 0) {
    this.Flash.create('warning', "Need to save order!", 3000);
    return
}
this.$window.open('#/orderLineitems/' + this.$stateParams.id);

}

我希望这个例子对我和其他答案都很有帮助。


By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.