我正在尝试用UI路由器取代AngularJS Route,因为这似乎是每个人都使用的。我刚刚开始,我想知道如何用$ stateProvider替换以下代码:
$routeProvider
.when('/login', {
templateUrl: 'views/login.html',
controller: 'LoginCtrl'
})
.when('/dashboard', {
templateUrl: 'views/dashboard.html',
controller: 'DashboardCtrl'
})
.otherwise({
redirectTo: '/login'
});
答案 0 :(得分:1)
将when
替换为state
:
$stateProvider
.state('state1', {
url: "/state1",
templateUrl: "partials/state1.html"
})