gpt4 book ai didi

javascript - 是否可以像在 $routeProvider 中一样在 angularAMD 中设置页面标题?

转载 作者:行者123 更新时间:2023-11-28 00:31:40 26 4
gpt4 key购买 nike

我正在努力实现这样的目标:

$routeProvider.when("/home", angularAMD.route({
title: 'Home',
templateUrl: 'views/home.html',
controller: 'testCtrl'
}))

就像这篇关于 $routeProvider How to dynamically change header based on angularjs partial view? 的文章一样(第二个未接受的答案,但似乎是更好的答案)

$routeProvider.when('/', {
title: 'Home',
templateUrl: '/Assets/Views/Home.html',
controller: 'HomeController'
});

最佳答案

添加此代码 below the app.config()

  app.run(['$rootScope', '$route', function($rootScope, $route) {
$rootScope.$on('$routeChangeSuccess', function() {
document.title = $route.current.title;
});
}]);

和布局 View :

<!DOCTYPE html>
<html ng-app="app">
<head>
<title>Default title</title>

无需绑定(bind),无需使用 {{}}。

关于javascript - 是否可以像在 $routeProvider 中一样在 angularAMD 中设置页面标题?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28922629/

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