What is the Rails Presenters folder for?
问题 What is the Rails Presenters folder for? What goes in this folder? Why is this folder needed? 回答1: presenters is a design pattern commonly reffered to as Model View Presenter(MVP) This is a derivation of the Model View Controller pattern and is used for creating user interfaces. It's useful for the Separation of Concerns for making code more DRY. Here's how Wikipedia describes it model - interface defining the data to be displayed or otherwise acted upon in the user interface. presenter -