Model–View–Controller (MVC) is an architectural pattern used in software engineering. Use the more specific [asp.net-mvc] tag (ASP.NET MVC) instead, if applicable.
609
votes
17answers
102k views
What are MVP and MVC and what is the difference?
When looking beyond the RAD (drag-drop and configure) way of building User Interfaces that many tools encourage you are likely to come across 2 design patterns called Model-View-Controller and ...
215
votes
12answers
62k views
What is the difference between MVC and MVVM?
Is there a difference between the standard "Model View Controller" pattern and Microsoft's Model/View/ViewModel pattern?
161
votes
5answers
49k views
133
votes
12answers
50k views
Getting Started with RSpec - Looking for tutorials
I am looking to get started building a project and want to use RSpec from day one. My Ruby background is limited; however, I do have a good understanding of MVC and the structure within Ruby.
In ...
130
votes
14answers
51k views
MVC pattern in Android?
Is it possible to implement the Model-View-Controller pattern in Java for Android? Or is it already implemented through Activities? Or is there a better way to implement the MVC pattern for Android?
129
votes
5answers
16k views
How should a model be structured in MVC?
I am just getting a grasp on the MVC framework and often I wonder how much code should go in the model. I trend of have a data access class that has methods like this:
public function ...
129
votes
10answers
28k views
ViewModel Best Practices
From this question, it looks like it makes sense to have a controller create a ViewModel that more accurately reflects the model that the view is trying to display, but I'm curious about some of the ...
129
votes
13answers
5k views
Should sorting logic be placed in the model, the view, or the controller?
I have a drop down list that displays values from a table to the end user. I would like to have these values be sorted alphabetically.
According to proper MVC design, at what layer should I place my ...
118
votes
49answers
46k views
What's the best way to separate PHP Code and HTML? [closed]
I really don't like mixing PHP and HTML. Mixing them makes it difficult to maintain both the PHP and the HTML, and it just makes sense to keep the two apart.
See also the question on whether PHP is a ...
104
votes
9answers
24k views
Rails Model, View, Controller, and Helper: what goes where?
In Ruby on Rails Development (or MVC in general), what quick rule should I follow as to where to put logic.
Please answer in the affirmative - With Do put this here, rather than Don't put that there.
...
96
votes
30answers
43k views
Is there a Javascript MVC (micro-)framework? [closed]
Are there any client-side Javascript MVC (micro-)frameworks?
I have a rather complicated HTML form and it would benefit from the MVC pattern.
EDIT:
I imagine a good solution would provide the ...
65
votes
5answers
14k views
What is the HMVC pattern?
Reading Kohana's documentation, I found out that the main difference in 3.0 version is that it follows the HMVC pattern instead of MVC as version 2.x does. The page about this in Kohana's docs and the ...
63
votes
8answers
25k views
Implementing MVC with Windows Forms
Where can I find a good example on how to completely implement the MVC pattern in Windows Forms. I found many tutorials and code examples on various sites (e.g. CodeProject, .NetHeaven) but many are ...
60
votes
12answers
33k views
MVC Vs n-tier architecture
I was wondering what exactly is the difference between MVC(which is an architectural pattern) and an n-tier architecture for an application. I searched for it but couldn't find a simple explanation. ...
57
votes
14answers
6k views
ASP.NET MVC and Model-view-controller pattern - where do I start from? [duplicate]
Possible Duplicate:
MVC Learning Resources
I'd like to improve my understanding of MVC design pattern, as I'll be probably using it in the future (my job is mainly focused in developing ...
54
votes
13answers
7k views
What goes into the “Controller” in “MVC”?
I think I understand the basic concepts of MVC - the Model contains the data and behaviour of the application, the View is responsible for displaying it to the user and the Controller deals with user ...
54
votes
4answers
24k views
How do I fetch a single model in Backbone?
I have a Clock model in Backbone:
var Clock = Backbone.Model.extend({});
I'm trying to get an instance of that that has the latest information from /clocks/123. Some things I've tried:
a ...
54
votes
14answers
16k views
MVC tutorial that doesn't rely on a framework?
I want to learn MVC "architecture pattern" but I don't want to jump into a framework like Rails or Django just yet. I want to understand the concept first and write some simple code in my currently ...
49
votes
2answers
32k views
Returning a file to View/Download in MVC
I'm encountering a problem sending files stored in a database back to the user in MVC3. What I want is a view listing two links one to view the file if the browser supports it and the other forcing a ...
48
votes
7answers
11k views
How Does Differential Execution Work?
I've seen a few mentions of this on SO, but staring at Wikipedia (the relevant page has since been deleted) and at an MFC dynamic dialog demo did nothing to enlighten me. Can someone please explain ...
47
votes
6answers
14k views
Backbone.js : repopulate or recreate the view?
In my web application, I have a user list in a table on the left, and a user detail pane on the right. When the admin clicks a user in the table, its details should be displayed on the right.
I have ...
47
votes
19answers
32k views
What's a good lightweight Python MVC framework? [closed]
I know there are a ton of Python frameworks out there. Can you guys point me in the right direction? My primary concern is simplicity, I don't need a lot of extraneous features.
Here are a couple of ...
44
votes
5answers
9k views
SproutCore vs. Cappuccino
Aside from the language differences Javascript vs. Objective-J what benefits does Cappuccino provide over SproutCore and vice-versa in your experiences?
In terms of a long-term forecast, is ...
44
votes
5answers
5k views
How can you organize the code for a game to fit the MVC pattern?
I'm a freshman in college going for my computer science degree... I've programmed plenty the last several years but just lately I've been getting more into theoretical ideas about organizing code, ...
43
votes
3answers
13k views
How to render and append sub-views in Backbone.js
I have a nested-View setup which can get somewhat deep in my application. There are a bunch of ways I could think of initializing, rendering and appending the sub-views, but I'm wondering what common ...
41
votes
2answers
10k views
GUI not working after rewriting to MVC
I'm practicing MVC style programming. I have a Mastermind game in a single file, working fine (maybe apart of the fact that "Check" button is invisible at start).
http://paste.pocoo.org/show/226726/
...
41
votes
3answers
8k views
AngularJS: Where to put model data and behaviour?
I am working with AngularJS for my latest project. In the documentation and tutorials all model data is put into the controller scope. I understand that is has to be there to be available for the ...
41
votes
3answers
6k views
Service Layers and Repositories
I've been using MVC frameworks for a short while now and I really like how the concerns are separated out. I've got into a bad habit of letting the controllers do quite a bit of work. So I'm really ...
39
votes
4answers
7k views
Fat models, skinny controllers and the MVC design pattern
I just read a blog post that explains MVC with a banking analogy. I have a few months of experience with web application development with an MVC framework (CakePHP), so I get the basics, but I began ...
38
votes
4answers
8k views
Where does the “business logic layer” fit in to an MVC application?
First, before anyone screams dupe, I had a hard time summarizing it in a simple title. Another title might have been "What is the difference between a domain model and MVC model?" or "What is a ...
37
votes
4answers
20k views
Rails params explained?
I've been studying ruby and rails for a little over a month and I've reproduced most of the tutorial apps that I could find but I'm still trying to wrap my head around MVC, especially rails ...
37
votes
10answers
2k views
Understanding the MVC Pattern
I am having some trouble understanding the MVC Pattern. I do understand we are trying to decouple the GUI from the business logic, although I'm having problems understanding how.
From what I ...
34
votes
6answers
31k views
Looking for clean WinForms MVC tutorial for C#
How to create a rich user interface Windows application, example Photo Shop.
I am looking for clean MVC tutorial for WinForms with C# somewhere. (Not ASP.NET MVC.)
Being new on the Windows Platform; ...
32
votes
3answers
9k views
SproutCore vs Cappucino vs Ember vs Extjs [closed]
I've found a lot of topics covering some of the aspects, but these topics are old (2009 and 2010). Among them there are very good comparisons like:
SproutCore vs. Cappuccino
Differences between ...
32
votes
5answers
4k views
Why Qt is misusing model/view terminology?
I think that the terminology used in Qt with model/view controls is flawed. On their explanation page they state, that they simplified the MVC to MV by merging View and Controller and they are giving ...
32
votes
3answers
6k views
Unexplainable variable $data in Knockout JS
In the KnockoutJS tutorials I stumbled upon the following code example that contains an unexplainable variable $data. The tutorial does not contain any explanation what that dollar sign is used for ...
31
votes
3answers
5k views
ACL implementation
First question
Please, could you explain me how simpliest ACL could be implemented in MVC.
Here is the first approach of using Acl in Controller...
<?php
class MyController extends Controller {
...
31
votes
4answers
4k views
Data structures for message passing within a program?
I'm trying to write a simple RPG. So far, each time I try to start it instantly becomes a mess and I don't know how to organize anything. So I'm starting over, trying to prototype a new structure that ...
31
votes
4answers
6k views
Fat model / thin controller vs. Service layer
I have been developing enterprise applications for many years using .Net
My apps usually have a domain model containing entities mapping to SQL DB tables.
I use a Repository pattern, Dependency ...
30
votes
12answers
34k views
Models in the Zend Framework
What are some of the ways you have implemented models in the Zend Framework?
I have seen the basic class User extends Zend_Db_Table_Abstract and then putting calls to that in your controllers:
$foo ...
30
votes
14answers
15k views
Flex MVC Frameworks [closed]
I'm currently using and enjoying using the Flex MVC framework PureMVC. I have heard some good things about Cairngorm, which is supported by Adobe and has first-to-market momentum. And there is a new ...
30
votes
5answers
16k views
what is Data Transfer Object?
what is a Data Transfer Object?
In MVC are the model classes DTO, and if not what are the differences and do we need both?
28
votes
2answers
4k views
MVW - What does it stands for?
Here's the content description for AngularJS page:
AngularJS is what HTML would have been, had it been designed for building web-apps. Declarative templates with data-binding, MVW, MVVM, MVC, ...
28
votes
7answers
4k views
MVC: Data Models and View Models
I've read some MVC advice in the past regarding models stating that you should not reuse the same model objects for the domain and the view; but I haven't been able to find anyone willing to discuss ...
28
votes
6answers
3k views
Why do I need to work harder to make my Rails application fit into a RESTful architecture?
The Background
I started a Rails project recently and decided to use RESTful controllers. I created controllers for my key entities (such as Country) and added index, new, edit, create, show, update, ...
27
votes
2answers
9k views
Can Angular.js auto-update a view if a persistent model (server database) is changed by an external app?
I'm just starting to familiarize with Angular.js, but I would like to build a web app that has a view that gets auto-upated in real-time (no refresh) for the user when something changes in the ...
26
votes
2answers
11k views
Disable client-side validation in MVC 3 “cancel” submit button
OK, been trying things for hours and could use some help. I'm trying to implement a page in MVC 3 that has "back" and "next" buttons. When the back button is clicked I want to disable client-side MVC ...
26
votes
10answers
8k views
Picking a ColdFusion MVC Framework
I am taking over a lot of the ColdFusion stuff that is lingering at our shop and they are insistent it stay on ColdFusion and that new projects in this area MUST be done in CF - basically this part is ...
26
votes
3answers
12k views
ember.js and the server
I'm looking at Ember.js and have been reading the docs to try and understand how to use it. I get it (pretty well), except for one thing. To my way of thinking in the MVC pattern, the Model is the ...
26
votes
9answers
17k views
Is MVC a Design Pattern or Architectural pattern
According to Sun and Msdn it is a design pattern.
According to Wikipedia it is an architectural pattern
In comparison to design patterns, architectural patterns are larger in scale.
(Wikipedia ...
