in reply to Some remarks on the difference between traditional MVC and web-MVC (was: Re^2: Implementing Model-View-Controller)
in thread Implementing Model-View-Controller
First off, since the web mostly works with HTML pages that can only be updated via request/response actions (I'm ignoring flash), you can't really have a model update the view's output directly. Also, there are so many possible views that updating them all would be very inefficient.
Unless you get serious about AJAX (many people bet on this). In theory, you can implement the entire MVC in JavaScript (client-side) and have your server acting just as a Web Services provider. In fact, XForms is just that, the only problem is that it still isn't supported by the web browsers..
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Some remarks on the difference between traditional MVC and web-MVC (was: Re^2: Implementing Model-View-Controller)
by dimar (Curate) on Jan 05, 2006 at 20:15 UTC | |
by ruoso (Curate) on Jan 06, 2006 at 18:16 UTC | |
|
Re^2: Some remarks on the difference between traditional MVC and web-MVC (was: Re^2: Implementing Model-View-Controller)
by Joost (Canon) on Jan 05, 2006 at 17:06 UTC | |
by ruoso (Curate) on Jan 05, 2006 at 17:22 UTC |