Answer the question
In order to leave comments, you need to log in
How to do AJAX in webasyst shipping plugin?
How to implement an ajax request in json format using the framework
in cms webasyst for the delivery plugin
Placed the class in the delivery plugin in the class file of the lib folder
class someAppAjaxActions extends waJsonActions
{
...
function testAction()
{
...
$this->response = array(
'valA' => 'value first',
'valB' => 'value second',
);
}
}
$.getJSON('?module=ajax&action=test', function (json) {
alert(json.data.valA);
});
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question