私はフォームを持っています、私はjs変数を使ってアクションパスを変更したいと思います。symfony twigアクションパスからの動的
これは、現在の作業コードです:私は何かしたい
if ($('#totalRecordsOfQuery').val() < 100) {
$('#postbackform').attr('action', "{{ path('_getAllRecordsStudentsProgress') }}");
$('#postbackform').submit();
$('#postbackform').attr('action', "{{ path('xyz) }}");
}
:このコードで
var allRecordsActions = "_getAllRecordsStudentsProgress";
if ($('#totalRecordsOfQuery').val() < 100) {
$('#postbackform').attr('action', "{{ path(allRecordsActions) }}");
$('#postbackform').submit();
$('#postbackform').attr('action', "{{ path('xyz') }}");
}
を、私はエラーを取得しています:
Variable "allRecordsActions" does not exist.
コードはtwigファイル(またはTWIGレンダリングエンジンで処理されたもの)の内部にありますか? – Matteo
それは小枝のファイルです –