服务器在ajax调用上返回空响应可能是路由错误

时间:2014-09-14 01:32:14

标签: javascript php jquery ajax

我有一个简单的搜索输入,我希望在使用jquery on blur点击时使用ajax调用POST数据。 ajax调用是以下代码:

$(".ajax").blur(function(){



            $.ajax({

                     type: "POST",
                     url : "adminController.php",
                     data : {
                     searchInput: $(this).val()
                     },
                     dataType : "json",
                     context : $("#searchResults"),

                    success: function(data)
                         {
                            $(this).text(data);
                            alert(data);
                         },
                    error: function (xhr,textStatus,err)
                         {
                            console.log("readyState: " + xhr.readyState);
                            console.log("responseText: "+ xhr.responseText);
                            console.log("status: " + xhr.status);
                            console.log("text status: " + textStatus);
                            console.log("error: " + err);
                         }
});
        });

当进行发布呼叫时,我得到一个重定向(找到302)到我的自定义404页面。但是,当我在chrome控制台中检查时,adminController.php位置正确。如果我手动删除重定向条件,我得到200 ok服务器响应,但响应为空。在我的adminController.php中我有以下代码(在构造函数中返回之后的代码在这里不是必需的):`

    class adminController
    {
        private $postData;
        private $errorMessage;
        public function __construct()
        {
        $this->postData=array();
        $this->errorMessage='';
        session_start();
        if(sessionClass::get('Username')== false || loginModel::checkAdmin()== false)
        {
            header('Location: /Costing/login');
            exit();
        }


        if(($_POST)) {
            //$this->handlePostData(); I entered the following
 simple code to make sure my json return array is not the issue for my problems
            $cars=array("Volvo","BMW","Toyota");
            return json_encode($cars);
        }

    }
    public function __destruct(){ }

    public function displayPage()
    {
        $admin = new adminModel();
        $nonAdminUsers = $admin->databaseInteract(sqlQueries::getNonAdmin());

        $adminView = new adminView();
        $adminView = $adminView->createAdminPage($nonAdminUsers);

        echo $adminView;

    }

    private function handlePostData()
    {

        foreach($_POST as $key => $value)
        {
            if(!empty($value)) {
                $sanitized_value = filter_var($value,FILTER_SANITIZE_FULL_SPECIAL_CHARS);
                $sanitized_value = filter_var($sanitized_value,FILTER_SANITIZE_STRING);
                $sanitized_value = filter_var($sanitized_value,FILTER_SANITIZE_MAGIC_QUOTES);
                $this->postData[$key] = $sanitized_value;

            }
            else
                $this->errorMessage.= $key.' is empty.';
        }
        if(!empty($this->postData))
        {
            $admin = new adminModel();
            foreach ($this->postData as $key => $value)
            {
                if($key == 'Seller' || $key == 'Customer' || $key == 'Product')
                {
                    $adminQuery = sqlQueries::searchOrders();
                    $tempArray['field']=$key;
                    $tempArray['value']=$value;

                    $result = $admin->databaseInteract($adminQuery,$tempArray);
                    $adminView = new adminView($result);
                }
                else if($key == 'nonAdmins')
                {
                    $adminQuery = sqlQueries::promoteToAdmin();
                    $tempArray['Username']=$value;
                    $result = $admin->databaseInteract($adminQuery,$tempArray);
                    $adminView = new adminView();
                    $adminView->displayErrors($result);


                }
                else
                {
                    $tempArray['value']=$value;
                    $adminQuery = sqlQueries::setConstants($key);
                    $result = $admin->databaseInteract($adminQuery, $tempArray);
                    $adminView = new adminView();
                    $adminView->displayErrors($result);

                }
            }
        }


    }
}`

我想要实现的不是提交按钮,而是将所有内容发布到模糊处并将结果转储到#searchResults div上。 我认为问题与我的路由器类有关。在帖子请求的第一个位置重定向似乎不健康,所以我将粘贴我的路由器和引导程序文件的代码。

bootstrap.php中:

    <?php

/**
 * @param $className
 * bootstrap file for autoload function and router calling
 *
 */


function my_autoloader($class) {

    if (file_exists(realpath(__DIR__). DIRECTORY_SEPARATOR . $class . '.php'))
    include realpath(__DIR__). DIRECTORY_SEPARATOR . $class . '.php';
    else if (file_exists(realpath(__DIR__). '\\Classes\\' . $class . '.php'))
    include realpath(__DIR__). '\\Classes\\' . $class . '.php';
    else if (file_exists(realpath(__DIR__). '\\Classes\\Controller\\' . $class. '.php'))
    include realpath(__DIR__). '\\Classes\\Controller\\' . $class. '.php';
    else if (file_exists(realpath(__DIR__). '\\Classes\\Model\\' . $class. '.php'))
    include realpath(__DIR__). '\\Classes\\Model\\' . $class. '.php';
    else if (file_exists(realpath(__DIR__). '\\Classes\\View\\' . $class. '.php'))
    include realpath(__DIR__). '\\Classes\\View\\' . $class. '.php';

    else
    {
       $error = new errorController('classNotFound');
    }
}

spl_autoload_register('my_autoloader');


    $routes = new router();
    $routes->add('/home', 'homeController');
    $routes->add('/login', 'loginController');
    $routes->add('/register', 'registerController');
    $routes->add('/index.php', 'homeController');
    $routes->add('/invoicing','invoiceController');
    $routes->add('/admin','adminController');
    $routes->add('/404','errorController');
    $routes->submit();

和router.php

类路由器 {

private $routes = array();
private $method = array();

public function __construct(){}

public function __destruct(){}

/ **  *使用其方法(字符串,匿名函数等)向数组添加可用路由  * /

    public function add($uri, $method = null)
        {

        $this->routes[] =trim($uri,'/');
        if ($method!= null)
            $this->method[]= $method;
        else
            throw new exception();

    }

    /**
     * Matches routes to controller actions.
     */
    public function submit()
    {
        $count=0;

        if(isset($_GET['uri'])) {
            $uri = $_GET['uri'];
        }
        else
            $uri = '/home';

        foreach( $this->routes as $key => $value)
        {

            if (preg_match("#^$value$#", $uri))
            {

                if (is_string($this->method[$key]))
                {
                    $userMethod = $this->method[$key];
                    $display = new $userMethod();
                    $display->displayPage();
                }
                else call_user_func($this->method[$key]);
            }
            else $count++;

        }

        if($count == sizeof($this->routes))
        {
            header ('Location: /Costing/404');
            exit();
        }

    }
}

最后但并非最不重要的是,我的.htaccess

ReWriteEngine On
ReWriteRule ^public/ - [L,NC]
ReWriteBase /Costing/
RewriteCond %(REQUEST_FILENAME) !-f
RewriteCond %(REQUEST_FILENAME) !-d
RewriteRule ^(.+)$ index.php?uri=$1 [QSA,L]

编辑1 :我使用的是Xampp,我的域名是localhost / Costing /。我尝试将网址更改为Costing / admin,这样我就摆脱了重定向。但是,除非我删除dataType =&#34; json&#34;我得到空响应(如果我删除了json,我会回到带有脚本的完整html页面,也就是ad​​minView文件)。使用MVC架构

编辑2 :我找到了解决办法。好像我是对的,路由导致问题。所以我创建了一个ajaxHandler.php文件并将其放在Costing目录之外并编辑了这样的ajax url:&#34; http:// localhost / ajaxHandler.php&#34;。我从这个文件得到了一个有效的响应,但是我无法使用根目录之外的文件。所以我需要改变htaccess。欢迎任何想法

2 个答案:

答案 0 :(得分:1)

我自己找到了解决方案,问题出在htaccess上。基本上是行

RewriteCond %(REQUEST_FILENAME) !-f
RewriteCond %(REQUEST_FILENAME) !-d

不允许我的网址要求提供文件或目录,因此禁止以.php结尾的任何内容。我必须创建一个文件夹并将我的ajax处理文件放在那里并添加如下的异常:

ReWriteRule ^ajax/ - [L,NC]

现在htaccess允许调用此文件,我可以正确使用它。我不确定这是否安全,但我仍然不知道为什么网址成本核算/管理员没有像马里安正确指出的那样工作。如果有人发现它为什么会很棒

答案 1 :(得分:0)

除了你的bootstrap.php我没有看到任何实际执行的PHP代码(即index.php)。

对于单个服务器端入口点,因为看起来您正在努力,您将希望所有请求最终都在完整路径请求完整的入口点上。从这个入口点,您可以调用路由器,然后调用adminController类。

然后操作顺序变为:

  1. 发送到/ admin
  2. 的Ajax请求
  3. 请求被定向到index.php
  4. Index.php触发引导程序以加载自动加载器
  5. Index.php使用传入路径调用路由器
  6. 路由器调用实际的AdminController类。
  7. 空响应可能是因为服务器只执行adminController.php,它似乎没有回显任何东西(该类永远不会在该文件中初始化)。