11

我使用 AngularJS 来构建我的应用程序。ng-view通过 routeProvider 设置路由。

一切正常,但我想知道如何获取当前的 templateUrl?

$routeProvider.
    when('/terms', {
                    templateUrl: '/pages/terms.html',
                    controller: AboutController
                   });

在这种情况下/pages/terms.html...

4

1 回答 1

24

您可能正在寻找$route.current.templateUrl.

于 2012-11-11T01:10:45.587 回答