ng-idle
Angularjsのモジュールを使用して 30 分間のアイドル時間後に自動ログアウトを実装するにはどうすればよいですか?
質問する
4651 次
1 に答える
1
angularjs についてはよくわかりません。コースを受講していますが、まだ始めたばかりです。私はあなたを助けることができるgithubの誰かを知っていますが。ここにスニペットを含めましたが、詳細を知りたい場合は、このサイトをチェックしてください: https://github.com/HackedByChinese/ng-idle
とにかく、ここにあります:
angular.js の後に angular-idle.js を含めます。このコマンドで Bower を使用してインストールできます: bower install --save ng-idle。
必要最小限の例:
// include the `ngIdle` module
var app = angular.module('demo', ['ngIdle']);
app
.controller('EventsCtrl', function($scope, Idle) {
$scope.events = [];
$scope.$on('IdleStart', function() {
// the user appears to have gone idle
});
$scope.$on('IdleWarn', function(e, countdown) {
// follows after the IdleStart event, but includes a countdown until the user is considered timed out
// the countdown arg is the number of seconds remaining until then.
// you can change the title or display a warning dialog from here.
// you can let them resume their session by calling Idle.watch()
});
$scope.$on('IdleTimeout', function() {
// the user has timed out (meaning idleDuration + timeout has passed without any activity)
// this is where you'd log them
});
$scope.$on('IdleEnd', function() {
// the user has come back from AFK and is doing stuff. if you are warning them, you can use this to hide the dialog
});
$scope.$on('Keepalive', function() {
// do something to keep the user's session alive
});
})
.config(function(IdleProvider, KeepaliveProvider) {
// configure Idle settings
IdleProvider.idle(5); // in seconds
IdleProvider.timeout(5); // in seconds
KeepaliveProvider.interval(2); // in seconds
})
.run(function(Idle){
// start watching when the app runs. also starts the Keepalive service by default.
Idle.watch();
});
お役に立てば幸いです:)
于 2015-09-04T00:12:39.197 に答える