Home  >  Article  >  Backend Development  >  ThinkPHP adopts module and operation analysis_PHP tutorial

ThinkPHP adopts module and operation analysis_PHP tutorial

WBOY
WBOYOriginal
2016-07-21 15:30:551139browse

Any WEB behavior can be considered as an operation of a module, and the system will analyze the module and operation to be performed based on the current URL. This analysis work is implemented by the URL scheduler, and the official built-in Dispatcher class completes the scheduling. In the Dispatcher scheduler, the project (appName), module (moduleName) and operation (actionName) that currently need to be executed will be obtained based on
http://servername/appName/moduleName/actionName/params
. In some cases, appName is not required (usually the homepage of the website, because the project name can be specified in the entry file, in which case appName will be replaced by the entry file). In more complex situations, grouping (groupName) may also appear.
Each module is an Action file, similar to what we usually call a controller. The system will automatically look for related classes under the Action directory of the project class library. If not found, the empty module will be located, otherwise an exception will be thrown. .
The actionName operation is to first determine whether there is a public method of the Action class. If it does not exist, it will continue to look for the method in the parent class. If it still does not exist, it will look for whether there is an automatically matching template file. If a template file exists, the template output will be rendered directly.
Therefore, an important process in application development is to define specific operations for different modules. If an application does not need to interact with the database, it does not need to define a model class, but it must define an Action controller. The definition of the Action controller is very simple, just inherit the Action base class, for example: microfiber cloth

Copy the code The code is as follows:

class UserAction extends Action{
}

If we want to execute the following URL
http://servername/index.php/User/add
you need to add An add method is enough, for example
Collapse PHP Code copy content to clipboard
Copy code The code is as follows:

class UserAction extends Action{
// Define an add operation method. Note that the operation method does not require any parameters
Public function add(){
// Logic implementation of the add operation method
// … … bath rug
$this->display(); // Output template page
}
}

The operation method must be defined as Public type, otherwise an error will be reported. And be careful not to duplicate the naming of the operation method with the method of the built-in Action class. The system will automatically locate the template file for the current operation, and the default template file should be located in TpldefaultUseradd.html under the project directory.

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/323141.htmlTechArticleAny WEB behavior can be considered as an operation of a module, and the system will analyze the requirements based on the current URL. The modules and operations performed. This analysis work is implemented by the URL scheduler, official...
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn