假设我有这个配置:
app.config(['$routeProvider',
function($routeProvider) {
$routeProvider
.when('/', {
templateUrl: 'app/partials/index.html',
controller: 'defaultCtrl'
})
.when('/other', {
templateUrl: 'app/partials/other.html',
controller: 'errorCtrl'
})
.otherwise({
templateUrl: 'app/partials/404.html'
});
}
]);
在路由器调用路由之前,我正在寻找一个地方来做一些基本的、常见的维护代码。假设我想在console.clear()
每次更改路由时清除控制台日志。如何以及在哪里是代码中的最佳位置?