NAME
CatalystX::ExtJS::Direct - Enable Ext.Direct in Catalyst controllers
VERSION
version 2.1.5
SYNOPSIS
package
MyApp::Controller::API;
use
Moose;
package
MyApp::Controller::Calculator;
use
Moose;
sub
sum : Local : Direct : DirectArgs(1) {
my
(
$self
,
$c
) =
@_
;
$c
->res->body(
$c
->req->param(
'a'
) +
$c
->req->param(
'b'
) );
}
1;
In your web application:
// Load ExtJS classes here
<script type=
"text/javascript"
src=
"/api/src"
></script>
<script>
Ext.Direct.addProvider(Ext.app.REMOTING_API);
Calculator.sum({ a: 1, b: 2 }, function(result) {
alert(result);
});
</script>
DESCRIPTION
This module makes the transition to Ext.Direct dead simple.
Have a look at the tutorial which gives you a few examples on how to use this module.
CatalystX::Controller::ExtJS::Direct::API is responsible for providing the API to the ExtJS application. Some configuration can be done here.
SEE ALSO
- CatalystX::ExtJS
-
Parent namespace. Includes examples and the code for the tutorial.
- CatalystX::ExtJS::REST
-
Add feature-rich REST controllers to your application.
AUTHOR
Moritz Onken <onken@netcubed.de>
COPYRIGHT AND LICENSE
This software is Copyright (c) 2014 by Moritz Onken.
This is free software, licensed under:
The (three-clause) BSD License