简体   繁体   中英

$location.path or $location.url doesn't trigger the ngRoute controller

I have a route defines as follows:

$routeProvider.
        when('/projects/', {
            controller: 'ProjectCtrl',
            controllerAs: 'project_ctrl',
            templateUrl: '/static/app/partials/project.html'
        }).

After the login finishes I need the user to land on this link, hence in my controller I am using this:

vm.login = function(form) {
            if (form.$valid) {
                loginService.login(vm.loginFormData.username, vm.loginFormData.password);
                loginService.setUpUser()
                $location.url("/projects");
            }
        }

But unfortunately the controller associated with this view is not triggered, that is ProjectCtrl is not triggered. However when I click on the navigation link which uses in the dom, it works fine. Can someone please guide me here, may I am missing something conceptual.

Hence the larger question is how do I redirect a user in the controller using some APIs which also complies with ngRoute based controllers.

Try removing the last / in url so it matches $location.url("/projects");

$routeProvider.
        when('/projects', {

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM