MVC, when to separate controllers?
I’m starting with MVC and have a newbie question. What would be the logic criteria to define what a controller should encompass? For example, say a website has a ‘help’ section. In there, there are several options like: ‘about us’, ‘return instructions’, ‘contact us’, ’employment opportunities’. Each would then be accessed like ‘mysite.com/help/aboutus’, ‘mysite.com/help/returns’, ‘mysite.com/help/contactus’, etc.
Questions about identifying the components in MVC
I’m currently developing an client-server application in node.js, Express, mustache and MySQL. However, I believe this question should be mostly language and framework agnostic.
MVC two models required?
I’ve been doing software for a long time, but almost all of it has been back-end centric.
How can I get my progress reviewed as a solo junior developer [closed]
Closed 9 years ago.
How can I get my progress reviewed as a solo junior developer [closed]
Closed 9 years ago.
In PHP, what are the different design patterns to implement OO controllers as opposed to procedural controllers?
For example, it’s very straightforward to have an index.php controller be a procedural script like so:
Where should “display functions” live in an MVC web app?
I’m using the Yii Framework which is an MVC php framework that is pretty similar to your standard web-based MVC framework. I want to display the related data from a many-to-many table as a list of strings in my view.
ASP.NET MVC Controller separation best practices [closed]
It’s difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center. Closed 12 years ago. I am very new in ASP.NET MVC and […]
Model View Presenter over Model View Controller [duplicate]
Possible Duplicate:
Building websites, which is the better approach MVP or MVC?
Isn’t MVC anti OOP?
The main idea behind OOP is to unify data and behavior in a single entity – the object. In procedural programming there is data and separately algorithms modifying the data.