weixin_33691700 2017-11-18 18:48 采纳率: 0%
浏览 30

发送ajax数据到控制器

Without using MVC, I would have a page that has some jQuery which makes an ajax call to a specific php page, like:

$(document).ready(function(){
    $( "#login" ).on("click", function(e) {
        e.preventDefault();
        var form = $( "#loginForm" ).serialize();
        $.ajax({
            url: 'somePage.php',
            type: 'POST',
            dataType: 'json',
            data: form,
        })
        .done(function (data) {
            if(!data.success) {

                console.log(data.message);

            } else {

                console.log(data.message);
            }
        })
        .fail(function (jqXHR, textStatus, errorThrown) {
                console.log(textStatus + ': ' + errorThrown);
                console.warn(jqXHR.responseText);
            });
    });
});

somePage.php would look like:

if($_POST) {

    $response = array();
    $message = "";

if(empty($_POST['name'])) {

        $message .= "Name required";
    }

if($message) {

        $response['success'] = false;
        $response['message'] = $message;

    } else {

        // add data to database
        $response['success'] = true;
        $response['message'] = "Success";

    }

    echo json_encode($response);
}

I am new to MVC and OOP and am just wondering how I would change this because I would need to do the validation in the controller and then send the data to the model for database insert. The purpose of the ajax here is simply prevent page refresh when submitting the form and either display an error message if validation fails or show a success message if passes and then insert data into the database.

This is what my controller looks like at the moment for non ajax submission:

public function test() {

        if($_POST) {


            $data = [

                'email' => trim($_POST['email']),
                'email_err' => '' 
            ];

            if(empty($_POST['email'])) {

                $data['email_err'] = 'Email required';
            }

            if(empty($data['email_err'])) {

                //send data to model

            } else {

                $this->view('users/login', $data);
            }

        } else {

            $data = [

                'email' => '',
                'email_err' => ''
            ];

            $this->view('users/login', $data);
        }
    }

So, the question is basically how do I get the ajax response to the controller and the model? The error message would be displayed in the view.

  • 写回答

0条回答 默认 最新

    报告相同问题?

    悬赏问题

    • ¥15 数据量少可以用MK趋势分析吗
    • ¥15 使用VH6501干扰RTR位,CANoe上显示的错误帧不足32个就进入bus off快慢恢复,为什么?
    • ¥15 大智慧怎么编写一个选股程序
    • ¥100 python 调用 cgps 命令获取 实时位置信息
    • ¥15 两台交换机分别是trunk接口和access接口为何无法通信,通信过程是如何?
    • ¥15 C语言使用vscode编码错误
    • ¥15 用KSV5转成本时,如何不生成那笔中间凭证
    • ¥20 ensp怎么配置让PC1和PC2通讯上
    • ¥50 有没有适合匹配类似图中的运动规律的图像处理算法
    • ¥15 dnat基础问题,本机发出,别人返回的包,不能命中