I'm using HTML::FormHandler, and in an effort to not repeat a lot of code I am trying to split my form up into reuasable pieces as suggested by the HTML::FormHandler Cookbook. It discusses being able to create your own fields or your own roles to accomplish this, however I cannot really a clearcut difference between the two. I understand that they are different in how you implement/use them, but as far as I can tell they seem to pretty similarly accomplish the same things. My question is are there any situations where it is a clear choice to use one over the other? Or is this something that tends to be more a preference kind of thing? Thanks for the help. I'd like to do this right before the code is in production and it's harder to change later :)
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
One option is to use Moose classes the other is to use Moose roles. The concepts are slightly different. Here is a snippet from the Moose Roles manual:
Classes let you use inheritance, roles are good when you want to share functionality without inheriting. For a (contrived) example of when you would/would not want to use inheritance, see this article on Roles vs Inheritance |
|||
|
|