我尝试使用ng-idle更改页面标题:
我的头衔:
<title>MySite Local</title>
似乎没有效果的代码:
app.run(function (Title) {
Title.idleMessage('You are idle');
});
取自https://github.com/HackedByChinese/ng-idle/issues/128
我在这里遗漏了什么?如果没有上述代码,标题也不会改变。
为了以防万一,我还得到TitleProvider.enabled(true);
。
答案 0 :(得分:0)
我不熟悉该指令,但如果你要做的就是设置标题,那么一个普通的老控制器就可以了。
titleController.js (()=&gt; { “使用严格”
angular.module('myApp').controller('titleController', titleController)
function titleController($scope) {
$scope.appTitle = "Hi Dad, I'm in jail!"
}
})()
的index.html
{{appTitle}}
当然,您必须添加自己的逻辑来检测空闲用户。