Mobile app version of vmapp.org
Login or Join
Pierce454

: Why should I develop my applications using the MVC design pattern? MVC seems to be very popular these days, but the "education overhead" of newly learning a chosen MVC framework seems to be

@Pierce454

Posted in: #Mvc

MVC seems to be very popular these days, but the "education overhead" of newly learning a chosen MVC framework seems to be quite high. Why should I choose to invest the time to do this, rather than just put my code in with my HTML?

10.01% popularity Vote Up Vote Down


Login to follow query

More posts by @Pierce454

1 Comments

Sorted by latest first Latest Oldest Best

 

@Radia820

As your site grows, it will be easier to manage if your display is separated from your code. You want to modify the design ? It's all separated, you don't have to worry about the code in the HTML. You want to modify the way data are calculated ? It's all separated, you don't have to worry about the HTML in the code.

Your code will also be easier to read and if you want to add other people to the project later, it's easier for them if your code is separated from your HTML.

Once you are used to MVC development, it doesn't really take more time to develop than "normal" development.

10% popularity Vote Up Vote Down


Back to top | Use Dark Theme