Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私が取り組んでいるプロジェクトには要件があります。ユーザーのセッションが期限切れになると、ユーザーをログインページに自動的に転送するか、セッションが期限切れになったことを通知するアラートをポップする必要があります。ユーザーが[OK]をクリックすると、ログインページに転送されます。どうすればこれを達成できますか。
1サーバーへのajax呼び出しでjavascriptタイマーを設定します。
2 サーバー側でセッションを確認します。セッションの有効期限が切れた場合はエラーを返します
3.ajaxエラーセクションで、ユーザーをログインページに送ります
setInterval(function() { $.ajax({ ........... error: function(request, textStatus, errorThrown) { //load login page } }); }, 1000)