I'm using alloy on titanium, I want to use modules but I'm worried about breaking the MVC principles. How can I achieve this?
Thanks.
I'm using alloy on titanium, I want to use modules but I'm worried about breaking the MVC principles. How can I achieve this?
Thanks.
In our projects we are using Titanium modules as service layer. (If a piece of business logic will be used in more than one controller, we refactor the logic into a module, so logic can be injected in all controllers). I do not see any violations of the original MVC architecture.
What we're trying to achieve in our projects is close to MVCS architecture (more info here)