Pregunta de entrevista de Saigon Technology

Could you explain how a normal MVC framework works in general? For example, how do you handle a request and send a final response to the end users via the MVC structure?

Respuesta de la entrevista

Anónimo

17 may 2025

I simply said that I setup a route in the router file, which will then point any request to this route to a controller. Controller will handle the business logic and retrieve data from a Model if needed, then render the respond with the View.