在 Zend_Auth 中,会话过期时重定向到新页面
我正在使用 zend 1.11 框架和doctrine。我正在发送以下 ajax 请求来填充下拉列表和等等...但是一旦会话过期,我就会在控制器的每个操作中重定向到登录页面。因此,如果会话过期,我将得到整个 html 页面作为响应。如何在 javascript 中做到这一点(我怎样才能找到整个 html 响应或不找到)。我正在使用 Zend_Auth 进行会话管理。
function loadzone(value)
{
var xmlhttp;
if (window.XMLHttpRequest)
{
xmlhttp=new XMLHttpRequest();
}
else
{
xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
}
xmlhttp.onreadystatechange=function()
{
if (xmlhttp.readyState==4 && xmlhttp.status==200)
{
document.getElementById("district_span").innerHTML=xmlhttp.responseText;
}
}
xmlhttp.open("GET","/main/zonechange?zc="+value,true);
xmlhttp.send();
}
I'm using zend 1.11 framework with doctrine . I'm sending below ajax request to populate dropdown list & etc... But once session expired i'm redirecting to login page in every actions of controllers. So i'm getting whole html page as response if session got expired. How to do that in javascript (how can i find out whole html response or not) . I'm using Zend_Auth for session management.
function loadzone(value)
{
var xmlhttp;
if (window.XMLHttpRequest)
{
xmlhttp=new XMLHttpRequest();
}
else
{
xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
}
xmlhttp.onreadystatechange=function()
{
if (xmlhttp.readyState==4 && xmlhttp.status==200)
{
document.getElementById("district_span").innerHTML=xmlhttp.responseText;
}
}
xmlhttp.open("GET","/main/zonechange?zc="+value,true);
xmlhttp.send();
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
据我的理解:
用户登录并打开某个表单。您执行 AJAX 检查来查看用户是否仍然登录。如果用户空闲时间太长,会话将过期。
在这种情况下您想重定向用户吗?
如果是这样,我认为你可以给用户一个错误的回调。这可以这样做:
如果你这样做,你可以扩展你的 JS 功能来捕获该代码
这是你所要求的还是我误解了你的问题? :)
有关响应代码的其他信息可以在此处找到:http://de.wikipedia.org/wiki/HTTP -状态代码
Well to my understanding:
A user is logged in and opens some form. You do AJAX-Checkups to see if user is still logged in. If user was idle for too long the session will expire.
In that case you want to redirect the user?
If is is like i think you can just give the user a bad callback. This can be done like this:
If you do so, you can just extend your JS Functionality to catch that code
Is this what you're asking for or did i misinterpret your question? :)
Additional Information regarding response codes can be found here: http://de.wikipedia.org/wiki/HTTP-Statuscode