我的目标是根据 AngularJS 服务的路由向 body 添加一个类。
例如,我想这样做(在 HAML 中):
%body#body{:class => "{{$route.current.templateUrl}}"}
$route
指在此处的文档中找到的 var:http: //docs.angularjs.org/api/ng.$route
这样,如果我访问/#/whatever
,它应该加载一个whatever.html
模板,并且该模板文件名应该显示为一个类,因此它是<body class="whatever.html">
.