In MVC, why can't a model create a view?
- by MUY Belgium
I have a web application written in Perl with a controller, some "views" and some "Models". Each "Model" is corresponding to one "View". The controller (one file) creates an Model object corresponding to each view (view is a CGI argument) then retrieve the view from the module it has just created.
Indeed, this should be bad thing but can you …