V
V
Vladimir2017-10-15 20:32:47
PHP
Vladimir, 2017-10-15 20:32:47

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',
);
}

}


No result when calling ajax

$.getJSON('?module=ajax&action=test', function (json) {
alert(json.data.valA);
});


What am I doing wrong? Looking forward to your advice and comments :)

Answer the question

In order to leave comments, you need to log in

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question