2017-08-06 69 views
0

如果不使用<a href="#!dashboard">Some text</a>,有沒有可能調用「dashboard.html」?我不會從javascript調用「dashboard.html」。

app.config(function($routeProvider) { 
    $routeProvider 
    .when('/', { 
    templateUrl : 'loginRegister.html', 
    controller : 'loginRegister' 
    }) 
.when('/dashboard', { 
    templateUrl : 'dashboard.html', 
    controller : 'dashboard' 
    }) 
}) 

app.controller('loginRegister', function($scope, $http) { 
    $scope.showDashboard = function() { 
     // CALL dashboard.html FROM HERE 
    } 
}) 
+0

通過這樣做你想達到什麼目的? – Shahzad

+0

考慮使用ui-router – Abhijeet

回答

0

這是在角度js應用中重定向的代碼

$location.path('/dashboard');