我使用AngularJS来构建我的应用程序。 ng-view
通过routeProvider设置路由。
一切正常,但我想知道如何获得当前的templateUrl?
$routeProvider.
when('/terms', {
templateUrl: '/pages/terms.html',
controller: AboutController
});
在这种情况下/pages/terms.html
...
答案 0 :(得分:24)
您可能正在寻找$route.current.templateUrl
。