gpt4 book ai didi

javascript - Angular JS根据显示的 View 将类分配给body标签?

转载 作者:太空宇宙 更新时间:2023-11-04 03:54:50 25 4
gpt4 key购买 nike

我有一个与此类似的 Angular 应用程序:

<html>
<body ng-app="my-app" ngcloak ng-controller="MainCtrl">

...stuff...

<!-- Add your site or application content here -->
<div ng-view=""></div>

....

View 由路由设置:

 .when('/maps', {
templateUrl: 'views/maps.html',
controller: 'MapsCtrl'
})

它工作正常。我想知道的是如何从当前位置获取类,使用上面的示例,将类“maps”分配给页面特定 CSS 的 body 标记。

最佳答案

我会像这样在 MainController 中设置一个监听器:

$scope.$on('$routeChangeSuccess', function(newVal, oldVal) {
if (oldVal !== newVal) {
$scope.routeClassName = $route.current.className;
}
});

在模板中:

<body ng-controller="mainController" ng-class="routeClassName">

然后你可以这样配置路由:

$routeProvider
.when('/maps', {
controller: 'mapsController',
template: 'maps',
className: 'maps' // <--- class name
})
.when('/about', {
controller: 'aboutController',
template: 'about',
className: 'about' // <--- class name
})

演示:http://plnkr.co/edit/QUaw6SkgPfR4IPyKniXG?p=preview

关于javascript - Angular JS根据显示的 View 将类分配给body标签?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22943805/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com