我正在做一个反应性采访,但是他们问了我AngularJS的问题。能否请您告知我是否已这样做。在这段代码中,我试图动态更改模板的标题。
<html data-ng-app="MyApp">
<head>
<title><!-- should change when ng-view changes --></title>
</head>
<body>
</body>
</html>
我的代码是,它不能正常工作:
app.service('template', function($scope) {
return {
setTitle: function(title) {
document.title = title;
}
}
}