cari

Rumah  >  Soal Jawab  >  teks badan

angular.js - angularjs的route路径问题

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('/');
        }
    };
})

我打开网页的时候是http://localhost:8000/#/ ,登陆的时候是想变成 http://localhost:8000/#/dashb... ,但是进行操作后路径却变成了http://localhost:8000/?#/
该怎么解决??

巴扎黑巴扎黑2744 hari yang lalu474

membalas semua(2)saya akan balas

  • 怪我咯

    怪我咯2017-05-15 17:08:06

    Ia sepatutnya menjadi masalah dengan alamat href pautan

    balas
    0
  • 世界只因有你

    世界只因有你2017-05-15 17:08:06

    Sekat azam anda buat sementara waktu

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

    Jelas di sini bahawa ia digunakan untuk pengesahan log masuk Jika pengesahan tidak berjaya, ia akan diubah hala ke http://localhost:8000/?#/

    .

    balas
    0
  • Batalbalas