Usually in the MVC template, when the user clicks on the page, the request will be sent, then the controller will process the request, then process it using the model and direct it to the corresponding view.
I read a post about a passive model and an active model, but is it possible, when the view interacts directly with the model, whether it will be a bidirectional relation (e.g. Model ↔ View) or unidirectional (e.g. Model-> View).
Is it appropriate to have a relationship between a model and a view? Well, in an ASP.NET MVC project, should I have a relationship between the model and the view, or be model independent?
source
share