angulaire.js - Problème de chemin de route angulairejs
巴扎黑
巴扎黑 2017-05-15 17:06:06
0
2
503
var app = angular.module('myApp', ['ngRoute']);

app.config(function($routeProvider) {
    $routeProvider.when('/', {
            templateUrl: 'login.html',
        })
        .when('/dashboard', {
            resolve: {
                "check": function($location, $rootScope) { 
                    if (!$rootScope.loggedIn) {
                        $location.path('/');
                    }
                }
            },
            templateUrl: 'dashboard.html'
        })
        .otherwise({
            redirectTo: '/'
        });
});

app.controller('loginCtrl', function($scope, $location, $rootScope) {
    $scope.submit = function() {

        if ($scope.username == 'admin' && $scope.password == 'admin') {
            $rootScope.loggedIn = true;
            $location.path('/dashboard');
        } else {
            alert('Wrong!');
            $location.path('/');
        }
    };
})

Quand j'ai ouvert la page Web, c'était http://localhost:8000/#/ Lorsque je me suis connecté, je voulais la changer en http://localhost:8000/#/dashb..., mais. après l'opération, le chemin est devenu Comment résoudre http://localhost:8000/?#/
? ?

巴扎黑
巴扎黑

répondre à tous(2)
刘奇

Il devrait s'agir d'un problème avec l'adresse href d'un lien

世界只因有你

Bloquez temporairement votre résolution

resolve: {
                "check": function($location, $rootScope) { 
                    if (!$rootScope.loggedIn) {
                        $location.path('/');
                    }
                }
            }

Il est évident ici qu'il est utilisé pour la vérification de la connexion. Si la vérification échoue, il sera redirigé vers http://localhost:8000/?#/

.
Derniers téléchargements
Plus>
effets Web
Code source du site Web
Matériel du site Web
Modèle frontal