开发者

Differences in putting a module in /helpers or in /lib?

What are the reasons putting a module in /helpers over the /lib folder in a RoR app?

Are /helpers more controller specific, while the /lib is more general in开发者_运维技巧 nature?


I think this is a good question because the MVC notion makes us forget that it's all really just metaphors for us to organize code so we don't get too mixed up. If you need to do some simple formating go with a helper, otherwise probably a module in /lib.


Helpers are strictly for defining methods that you want available in your views. /lib modules can be used for anything and are available throughout the application.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜