


ajax + php + Controller controls all background function calls
Please indicate the source for reprinting: http://www.cnblogs.com/ghypnus/p/4645873.html
I haven’t posted code here for a long time
It is divided into 3 parts to complete the ajax calling logic of php, as follows It is a rough structure
The first part: ajax request: mainly the action parameter, LoginController is the class name of php, login is the function name in the LoginController class
$('#submit').on('click', <span>function</span><span> (e) { e.stopPropagation(); $.ajax({ url: </span>"../../controllers/Controller.php"<span>, data: { action: </span>"LoginController/login"<span>, username: username, password: password }, dataType: </span>"text"<span>, type: </span>'POST'<span>, timeout: </span>10000<span>, error: </span><span>function</span><span> () { alert(</span>"服务器超时"<span>); }, success: </span><span>function</span><span> (data) { alert(data); } }); });</span>
The second part: Controller.php, this file is Calling controllers of other specific functional classes plays a pivotal role, mainly through reflection
<?<span>php </span><span>if</span> (!<span>empty</span>(<span>$_REQUEST</span>['action'<span>])) { </span><span>try</span><span> { </span><span>$action</span> = <span>explode</span>('/', <span>$_REQUEST</span>['action'<span>]); </span><span>$class_name</span> = <span>$action</span>[0<span>]; </span><span>$method_name</span> = <span>$action</span>[1<span>]; </span><span>require</span><span>$class_name</span> . '.php'<span>; </span><span>$class</span> = <span>new</span> ReflectionClass(<span>$class_name</span><span>); </span><span>if</span> (<span>class_exists</span>(<span>$class_name</span><span>)) { </span><span>if</span> (<span>$class</span>->hasMethod(<span>$method_name</span><span>)) { </span><span>$func</span> = <span>$class</span>->getmethod(<span>$method_name</span><span>); </span><span>$instance</span> = <span>$class</span>-><span>newInstance(); </span><span>$func</span>->invokeArgs(<span>$instance</span>, <span>array</span>(<span>$_REQUEST</span><span>)); </span><span>$result</span> = <span>$instance</span>-><span>getResult(); </span><span>echo</span><span>$result</span><span>; } } } </span><span>catch</span> (<span>Exception</span><span>$exc</span><span>) { </span><span>echo</span><span>$exc</span>-><span>getTraceAsString(); } } </span>?>
Part 3: LoginController.php, this file is a specific functional class
<?<span>php </span><span>class</span><span> LoginController { <br /><span>private </span>$result;<br /></span><span>function</span><span> LoginController() { </span><span>//</span><span>初始化数据库连接等参数</span><span> } </span><span>function</span> login(<span>$args</span><span>) { </span><span>//</span><span>具体的登录逻辑</span><span> } </span><span>function</span><span> getResult() { </span><span>return</span><span>$this</span>-><span>result; } } </span>?>
The above introduces ajax + php + Controller to control all background function calls, including aspects. I hope it will be helpful to friends who are interested in PHP tutorials.

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

In this chapter, we will understand the Environment Variables, General Configuration, Database Configuration and Email Configuration in CakePHP.

PHP 8.4 brings several new features, security improvements, and performance improvements with healthy amounts of feature deprecations and removals. This guide explains how to install PHP 8.4 or upgrade to PHP 8.4 on Ubuntu, Debian, or their derivati

To work with date and time in cakephp4, we are going to make use of the available FrozenTime class.

To work on file upload we are going to use the form helper. Here, is an example for file upload.

In this chapter, we are going to learn the following topics related to routing ?

CakePHP is an open-source framework for PHP. It is intended to make developing, deploying and maintaining applications much easier. CakePHP is based on a MVC-like architecture that is both powerful and easy to grasp. Models, Views, and Controllers gu

DJI has not confirmed any plans to introduce a new action camera yet. Instead, it seems that GoPro will get ahead of its rival this year, having teased that it will introduce two new action cameras on September 4. For context, these are expected to a

Validator can be created by adding the following two lines in the controller.
