How can I call a method in one of my controller classes without grails trying to generate a view?
|
closed as not a real question by casperOne♦ Apr 2 '12 at 16:14
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.
|
You can redirect to another controller action.
At some point you should either write to the response or redirect to a method/closure that corresponds to a view so the user can receive the output. If the method you're trying to call is on another controller, chances are YOAR DOING IT WRONG. If, for example, I have a controller method that uploads a file, and another method that creates the filename for that file as a combination of some convention I make up (say timestamp + "pretty file for" + username) on another controller, you should promote that controller method to a Service and inject it into both controllers. |
|||
|
|
|
Essentially you can create a controller instance (via 'new' keyword) and then call the action of interest. Please provide more details about what you want to do, so i might be able to give a better answer... |
|||
|
|
|
||||
|
|