Come reindirizzare a un'altra pagina utilizzando AngularJS?


171

Sto utilizzando una chiamata Ajax per eseguire la funzionalità in un file di servizio e se la risposta ha esito positivo, desidero reindirizzare la pagina a un altro URL. Attualmente, lo sto facendo usando semplicemente js "window.location = response ['message'];". Ma devo sostituirlo con il codice angularjs. Ho cercato varie soluzioni su StackOverflow, hanno usato $ location. Ma sono nuovo di angolare e ho difficoltà a implementarlo.

$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
Perché è necessario utilizzare angolare per questo? Qualche motivo specifico? document.location è la strada giusta e probabilmente più efficiente della via angolare
casraf

Risposte:


229

Puoi usare Angular $window:

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

Esempio di utilizzo in un controller:

(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
Ho usato $ window.location.href ma dà un errore di funzione $ window.location non definita. Devo includere qualche dipendenza per questo?
Farjad Hasan,

3
No, ma potrebbe essere necessario iniettare $ window nel controller. Vedi la mia risposta modificata.
Ewald Stieger,

2
Il suo window.location.href non $ window.location.href
Junaid

3
@ user3623224 - in realtà non lo è;)
Ben

12
@Junaid window.location.href è per l'oggetto finestra tradizionale, $ window.location.href è per l'oggetto finestra AngularJS $, qui: docs.angularjs.org/api/ng/service/$window
Mikel Bitson

122

Puoi reindirizzare a un nuovo URL in diversi modi.

  1. Puoi usare $ window che aggiornerà anche la pagina
  2. Puoi "rimanere dentro" l'app a pagina singola e utilizzare $ location nel qual caso puoi scegliere tra $location.path(YOUR_URL);o $location.url(YOUR_URL);. Quindi la differenza di base tra i 2 metodi è che $location.url()influenza anche i parametri get mentre $location.path()non lo è.

Vorrei raccomandare di leggere i documenti $locatione in $windowmodo da avere una migliore comprensione delle differenze tra loro.


15

$location.path('/configuration/streaming'); questo funzionerà ... iniettare il servizio di localizzazione nel controller


13

Ho usato il codice qui sotto per reindirizzare alla nuova pagina

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

e iniettato l'oggetto $ window nella mia funzione controller.


12

Potrebbe aiutarti !!

Il codice di esempio di 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

In AngularJS puoi reindirizzare il tuo modulo (al momento dell'invio) ad un'altra pagina usando window.location.href='';come di seguito:

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/";      
    }
  }

Prova semplicemente questo:

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

4

Ho riscontrato problemi nel reindirizzamento a un'altra pagina in un'app angolare

Puoi aggiungere il $windowsuggerimento di Ewald nella sua risposta, o se non vuoi aggiungere il $window, basta aggiungere un timeout e funzionerà!

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

2

Il modo semplice che uso è

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

2

Un buon modo per farlo è usare $ state.go ('statename', {params ...}) è più veloce e più amichevole per l'esperienza dell'utente nei casi in cui non è necessario ricaricare e avviare la configurazione dell'intera app e cose

(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
                }
            })
    }

});

// itinerari

(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

Se vuoi usare un link allora: nel codice html hai:

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

nel file dattiloscritto

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

}

Spero che questo esempio ti sia stato utile così come lo è stato per me insieme alle altre risposte.


0

utilizzando location.href="./index.html"

o creare scope $window

e usando $window.location.href="./index.html"

Utilizzando il nostro sito, riconosci di aver letto e compreso le nostre Informativa sui cookie e Informativa sulla privacy.
Licensed under cc by-sa 3.0 with attribution required.