AngularJSを使用して別のページにリダイレクトする方法は?


171

私はajax呼び出しを使用してサービスファイルの機能を実行しています。応答が成功した場合、ページを別のURLにリダイレクトしたいと思います。現在、私は単純なjs "window.location = response ['message'];"を使用してこれを行っています。しかし、私はそれをangularjsコードで置き換える必要があります。私はスタックオーバーフローのさまざまなソリューションを調べましたが、$ 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

回答:


229

あなたはAngularを使うことができます$window

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

コントローラーでの使用例:

(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
Junaid

3
@ user3623224-実際にはそうではありません;)
Ben

12
@Junaid window.location.hrefは従来のウィンドウオブジェクト用で、$ window.location.hrefはAngularJS $ windowオブジェクト用です。ここでは、docs.angularjs.org
Mikel Bitson

122

さまざまな方法で新しいURLにリダイレクトできます。

  1. 使用できます $ windowをてページを更新することもます
  2. シングルページアプリを「そのまま」使用して$ locationを使用できます。この場合、$location.path(YOUR_URL);以下のいずれかを選択できます。$location.url(YOUR_URL);。。したがって、2つのメソッドの基本的な違いは、$location.url()取得パラメータにも影響しますが、$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

Angularアプリでも別のページにリダイレクトする際に問題が発生しました

あなたは追加することができます$windowエワルドは彼の答えで提案したように、またはあなたが追加したくない場合は$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

リンクを使用したい場合は、次のようにします。

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

typescriptファイル内

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

}

この例が他の回答と一緒に私にとっても役に立ったと思います。


0

使用する location.href="./index.html"

または作成する scope $window

そして使用 $window.location.href="./index.html"

弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.