开发者

MVC Pattern in cakephp

开发者 https://www.devze.com 2022-12-11 20:05 出处:网络
Could someone explain me about MVC pattern? How does it help cakephp fra开发者_JS百科mework?MVC stands for Model, View, Controller.

Could someone explain me about MVC pattern? How does it help cakephp fra开发者_JS百科mework?


MVC stands for Model, View, Controller.

Model = Data (Database tables)

View = HTML, CSS, JavaScript, etc

Controller = Main logic, a contract between Model & View.

In simple and graspable terms,

MVC allows you to develop your applications in a way that your business data and presentation data are separated. With this, a developer and designer can work independently on a MVC app without their work clashing. MVC makes your app avail OOP too.


Have a look at the respective section in the cookbook.

0

精彩评论

暂无评论...
验证码 换一张
取 消