3

我有一个自定义框架,我检测请求是否是我的请求文件中的ajax 。在我的基本控制器中,我检查用户是否已登录:

If user is not logged in:
  1. if request is ajax - force JS redirect from PHP (unable to do)
  2. if request is not ajax - PHP redirect (header, works)

我不能让1号工作。

这是我的重定向代码:

//User::Redirect
public function redirect($url = SITE_URL, $isAjax = false) {
    if ($isAjax === true) {
        //its ajax call, echo js redirect
        echo '<script>window.location = ' . $url . ';</script>';
    } else {
        header("Location: {$url}");
    }
    exit;
}

登录检查代码:

//Basecontroller::__construct
if ( ! $this->user->isLoggedIn()) {
   //redirect to login page
   $this->user->redirect('/login', $request->ajax()); 
   exit;
}

但不是重定向ajax调用它只是输出<script>window.location = URL</script>

笔记:

我知道我可以对我的每个 AJAX 调用添加检查以从那里进行重定向,但我试图避免这种情况并让我的 PHP 脚本在基本控制器中检测并重定向,而不是我对所有 AJAX 调用添加检查(很多)。

4

3 回答 3

3

您的 Javascript 重定向需要脚本标签。试试这个:

public function redirect($url = SITE_URL, $isAjax = false) {
    if ($isAjax === true) {
        //its ajax call, echo js redirect
        echo '<script>window.location = ' . $url . ';</script>';
    } else {
        header("Location: {$url}");
    }
    exit;
}

在你的ajax中处理这个方面,假设jQuery

$.ajax(
    {
        type: "POST",
        url: url,
        data: postParams,
        success: function(data)
        {
            //do something with success response
        },
        error : function(httpObj, txtStatus)
        {
            if(httpObj.status == 401)
            {//redirect to login
                var loginUrl = '/login';
                document.location.href = loginUrl;
            }
            else if(httpObj.status == ...)  //etc
            {//do something

            }
            else
            {
                alert("Ajax\n Error: " + txtStatus + "\n HTTP Status: " + httpObj.status);
            }
        }
于 2013-08-06T21:51:02.980 回答
1

客户应该如何知道这是 javascript?

尝试用脚本标签将其包裹起来,即

<html>
<script>
window.location = 'testpage.html'
</script>
</html>
于 2013-08-06T21:51:12.663 回答
0

这段代码对我有用。如果 ajax 调用发现用户未登录(例如:用户打开浏览器并且会话已过期),PHP 会将刷新代码作为 JS 或元标记回显到浏览器以强制刷新整个页面。

$url = '/index.php';

echo '<script type="text/javascript">';
echo 'window.location.href="'.$url.'";';
echo '</script>';
echo '<noscript>';
echo '<meta http-equiv="refresh" content="0;url='.$url.'" />';
echo '</noscript>';
于 2017-08-19T08:28:47.803 回答