What is an MVC framework and why is it necessary/useful?

前端 未结 9 773
自闭症患者
自闭症患者 2021-02-02 03:01

I know that an MVC framework allows you to separate business logic, data base access and presentation, but why do we need a framework to do this.

Can\'t we just keep ou

9条回答
  •  伪装坚强ぢ
    2021-02-02 03:38

    Hai Friends There are somemany types of architecture frame work has been there,firstly i know 2tier and 3 tier frame work ,the 3 tier and mvc ,entity framework are same but in different name's,so study a good background in any one architecture there fore if you went to any multinational companies ,you can easly score/highlight to your carrer.

    Model View Controller or MVC as it is popularly called, is a software design
    pattern for developing web applications. A Model View Controller pattern is made 
    up of the following three parts:
    
    **Model** - The lowest level of the pattern which is responsible for maintaining data.
    
    **View** - This is responsible for displaying all or a portion of the data to the user.
    
    **Controller** - Software Code that controls the interactions between the Model and View
    

提交回复
热议问题