What is the best definition of MVC?

后端 未结 7 1090
闹比i
闹比i 2020-12-14 04:27

I have been using the Zend Framework with an MVC configuration, read about Ruby on Rails and I plan to explore other MVC frameworks in Python (Django?). I really like the wa

7条回答
  •  一向
    一向 (楼主)
    2020-12-14 04:37

    The project is divided into three parts:

    1. model: represented into database.
    2. view: represented into your project’s interface that you could do it using html, javaScript and css.
    3. controller: this is your business logic represented into your functions and it is consider the link between the model and view that represent level of security, too.

提交回复
热议问题