在 Zend_Auth 中,会话过期时重定向到新页面

发布于 2024-12-06 05:59:57 字数 669 浏览 3 评论 0原文

我正在使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

少女七分熟 2024-12-13 05:59:57

据我的理解:
用户登录并打开某个表单。您执行 AJAX 检查来查看用户是否仍然登录。如果用户空闲时间太长,会话将过期。
在这种情况下您想重定向用户吗?

如果是这样,我认为你可以给用户一个错误的回调。这可以这样做:

$this->_response->setHttpResponseCode(401); //401 = unauthorized

如果你这样做,你可以扩展你的 JS 功能来捕获该代码

if (xmlhttp.readyState==4 && xmlhttp.status==401) {
  //do the redirect
}

这是你所要求的还是我误解了你的问题? :)
有关响应代码的其他信息可以在此处找到: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:

$this->_response->setHttpResponseCode(401); //401 = unauthorized

If you do so, you can just extend your JS Functionality to catch that code

if (xmlhttp.readyState==4 && xmlhttp.status==401) {
  //do the redirect
}

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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文