Ajax + php controls all background function calls. ajaxphp background function _ PHP Tutorial

Source: Internet
Author: User
Ajax + php controls all background function calls and ajaxphp background functions. Ajax + php controls all background function calls. the ajaxphp background functions are divided into three parts to complete the php ajax call logic. The following is the rough structure of the first part: ajax request: mainly act ajax + php controls all background function calls and ajaxphp background functions

A total of three parts are used to complete the ajax call logic of php. The following is a rough structure:

Part 1: ajax request: mainly the parameter action. LoginController is the php class name, and login is the function name in the LoginController class.

$ ('# Submit '). on ('click', function (e) {e. stopPropagation (); $. ajax ({url :".. /.. /controllers/Controller. php ", data: {action:" LoginController/login ", username: username, password: password}, dataType:" text ", type: 'post', timeout: 10000, error: function () {alert ("server timeout") ;}, success: function (data) {alert (data );}});});

Part 2: Controller. php. This file is used to call controllers of other specific functional classes and plays a pivotal role, mainly through reflection.

<?phpif (!empty($_REQUEST['action'])) {  try {    $action = explode('/', $_REQUEST['action']);    $class_name = $action[0];    $method_name = $action[1];    require $class_name . '.php';    $class = new ReflectionClass($class_name);    if (class_exists($class_name)) {      if ($class->hasMethod($method_name)) {        $func = $class->getmethod($method_name);        $instance = $class->newInstance();        $func->invokeArgs($instance, array($_REQUEST));        $result = $instance->getResult();        echo $result;      }    }  } catch (Exception $exc) {    echo $exc->getTraceAsString();  }}?>

Part 3: LoginController. php. This file is a specific function class.

<? Phpclass LoginController {private $ result; function LoginController () {// initialize database connection and other parameters} function login ($ args) {// specific login logic} function getResult () {return $ this-> result ;}}?>

This is all about this article. I hope you will like it.

Pipeline is divided into three parts to complete the ajax call logic of php. The following is the rough structure of the first part: ajax requests: mainly act...

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.