Я использую Symfony 3.4, и я хотел бы отправить некоторые данные в контроллер, но я не знаю, почему я не могу получить к ним доступ, как это показано в документации Symfony:
Это моя функция js:
function sendQuantitiesToController() {
// Validate data
var validation = validateQuestionnaireReviewFormData();
if (validation === false) {
return false;
}
// Get form data
var data = getReviewFormComponentsData();
var id = document.getElementById('questionnaire-id').innerText;
// Send data
$.post("http://localhost:8000/questionnaire/"+id+"/review", {
components: data.components,
optional_components: data.optional_components
},
function(response, status) {
if (status == 'success') {
return true;
} else {
return false;
}
});
}
И это моя функция контроллера:
/**
* Questionnaire result review
*
* @Route("/questionnaire/{id}/review", name="_questionnaire_review", requirements={"id" = "\d+"})
* @Template()
*/
public function questionnaireReviewAction(Request $request, $id)
{
$form = $this->createForm(ResultOverviewType::class, $result);
$contactForm = $this->createForm(ContactType::class, $contact);
if ($request->isMethod('POST')) {
// Get data from request
$components = $request->request->get('components');
$optionalComponents = $request->request->get('optional_components');
...
}
}
return [
'form' => $form->createView(),
'contactForm' => $contactForm->createView(),
'questionnaire' => $questionnaire
];
}
Шаблон Twig:
{{ form_start(contactForm, {'attr': {'onsubmit': 'return sendQuantitiesToController();'}}) }}
{{ form_widget(form) }}
{{ form_widget(contactForm) }}
{{ form_end(form) }}
Проблема в том, что запрос $-> request-> get ('components') в контроллере всегда имеет значение null, но я проверил getReviewFormComponentsData () с console.log и там есть данные, поэтому проблема, вероятно, связана с пост-запросом ajax.Что я делаю не так?Кто-нибудь может мне помочь?
Спасибо за помощь!