Actions guide
Actions is the routing core module of Cherrycake, and allows your application to receive requests and attend them accordingly.
Last updated
Was this helpful?
Actions is the routing core module of Cherrycake, and allows your application to receive requests and attend them accordingly.
Last updated
Was this helpful?
When using , all the modules who will be receiving requests should map their actions in the method, by calling .
is the default base core module because it is what you'll need in most cases. If you're experimenting with different ways of using Cherrycake, you can specify a different set of base modules in
When a request is received, will look through all the mapped actions. If any of them matches the current request, it will load the associated module and run the mapped method.
calls methods on all available modules during its initialization, using the
For example, the following module maps a simple action named home
that will call the viewHome
method when the root page /
is requested: