有 -
.when('/nextPage.html', {
templateUrl: 'src/app/views/nextPage.html',
controller: 'myCtrl',
resolve: function(/* args.. */) {
console.log('Routing to page-'+/* the new page name */)
// should log - "Routing to page-nextPage.html"
}
})
我想在nextPage.html
的函数中获取我将路由到它的新页面(resolve:
),我怎么能得到它?
答案 0 :(得分:0)
使用$route.current
访问新路由对象。
resolve: {
log: function($route) {
console.log($route.current);
}
}
您是否希望在templateURL
$route.current.loadedTemplateUrl
值