Am I making this ajax request correct?

this is the ajax

JavaScript:

Код:
    XF.ajax('GET', XF.canonicalizeUrl('statistics'), ajaxData, function (data) {

        });

here is how I'm accessing in controller, selectedOption is in the ajaxData

PHP:

Код:
public function actionIndex(ParameterBag $params) {

 

$selectedOption = $this->filter('selectedOption', 'int');

$viewParams = [

'selectedOption': $selectedOption

];

        return $this->view('mycontroller/action', 'my_template', $viewParams);



}

I'm using {$selectedOption} to access...

Read more

Читать далее...
 
Активность
Пока что здесь никого нет
Назад
Верх Низ