This article transferred from: https://www.kancloud.cn/donknap/we7/134626
Controller
The controller is organized in folders, files, in the system's source directory, each directory represents a controller, each file in the folder is an action.
In some cases, an action may contain more than one action, and a do parameter is provided in the system to distinguish between different actions in the same action.
For example: The Http://pro.we7.cc/web/index.php?c=extension&a=module&do=designer address indicates that the extension is the controller, the module is the action, Designer for a specific do under the action
Model
The model of the system is located in the Framework/model directory, where each file represents a separate functional model, and the model usually corresponds to the controller. Load the model with the load () function available
Template
The system template is located in [web|app]/themes/default/, template file and controller, action corresponds, the system provides a simple template engine mechanism, refer to the template engine
[Go] micro-engine MVC