Blogger Information
Blog 50
fans 0
comment 0
visits 31449
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
mvc代码整理
手机用户1580651468
Original
836 people have browsed it

mvc的学习

一.代码的整理

二. MVC

MVC 是开发思想, 不是设计模式

一) 术语

  1. M: 模型(Model),数据(如数据库)
  2. V: 视图(View), 页面(如 html)
  3. C: 控制器(Controller),类(如 CURD)

    二) 流程

  4. V->C: 控制器接收视图请求
  5. C->M: 控制器根据请求获取数据
  6. M->C: 数据返回到控制器
  7. C->V: 控制器选择视图展示数据
    数据单向流动,通过控制器统一处理
    原则上, 模型与视图之间不宜直接交互,而应该通过控制器进行

    三) 本质

    将 http URL 请求,映射到一个 PHP 函数(方法)去处理
Correcting teacher:PHPzPHPz

Correction status:qualified

Teacher's comments:
Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments