Mvc – Model-View-Controller (MVC) Which component handles save/load operations

iomvc

In a traditional MVC application, which component (model, view, or controller) is responsible for reading/writing the model to/from disk?

Best Answer

The Model is generally responisble to reading from/writing to the file system or database.

Related Topic