如果不使用<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
}
})
通過這樣做你想達到什麼目的? – Shahzad
考慮使用ui-router – Abhijeet