私の問題は本当に簡単です。
次のようなリンクがたくさんあります:
$this->Html->link(__('Calculer'), 'log_import/'.$suivi['Suivi']['date'], array('class' => 'logImport')
ご覧のとおり、「a」タグの href 属性はリンクごとに変更されます (「2012-01-01」、「2012-10-15」などの日付の種類)。
リンクをクリックすると、jquery コードが実行されます。
$this->Js
->get('.logImport')
->event('click',
$this->Js->request(
array('action' => '$(this).attr("href")'),
array('async' => true,
'update' => '#test')
));
そして、ajax リクエストで使用される URL は次のとおりであるため、エラーが発生します。
/suivis/$(this).attr("href")
ではない:
/suivis/log_import/2012-01-01