我想在 10 分钟不活动后注销用户,我正在使用 ng-idle v6.0.0-beta.5
https://www.npmjs.com/package/@ng-idle/core
当计算机进入睡眠状态时,ng-idle 停止工作。为了解决这个问题,我在开始观看之前将 setTimeout 设置为 false。
reset() {
this.idle.setTimeout(false); //added this line
this.idle.watch();
this.idleState = 'Started.';
this.timedOut = false;
}
这种方法适用于 Windows chrome,但不适用于 Mac。有什么办法让它在Mac上工作吗?