http://qs321.pair.com?node_id=872473


in reply to Re: How to organize Catalyst stash
in thread How to organize Catalyst stash

That means you should write specialized view classes and call that view from the controller, instead of doing the serialization in the controller.

daniel

Replies are listed 'Best First'.
Re^3: How to organize Catalyst stash
by dwm042 (Priest) on Nov 19, 2010 at 17:26 UTC
    I don't serialize in the controller. All my controllers do is pass data to the view.

      Sorry, I should have said: Don't prepare view-specific hashrefs in the controller, create custom view classes to do that.

      I think you understood I was implying you were creating the JSON string in the controller, and that's not the case. What I meant was the building of the hashref that you pass to the json view. The way to build that hashref should be in the view, not the controller.

      daniel