我一直在尝试使用 angulateJs ngRoute 导航到视图。我定义了第一个导航使用
$routeProvider.
when('/login', {
templateUrl: 'login.html',
controller: 'loginCtrl'
}).
when('/home', {
templateUrl: 'home.html'
}).
otherwise({
redirectTo: '/login'
});
现在我想从 loginController 转到主页。我怎样才能做到这一点。每个帖子都只是说仅从主页导航。我试过了
app.controller('loginCtrl', function($scope, $location){
$scope.login = function(){
$location.path('/home');
}
});