ビュー内で $ajax->form() 呼び出しを実行しようとすると、サーバーは次のように応答します: エラー 503 サービスを利用できません。
私はロードしました:
App::Import('Ajax');
$ajax = new AjaxHelper();
(私見の範囲内)
その後:
$ajax->form(array('type' => 'post',
array('type' => 'post',
'options' => array(
'model'=>'User',
'update'=>'dateTarget',
'url' => array(
'controller' => 'comments',
'action' => 'edit'
)
)
));
私が見つけることができる唯一のエラーは次のとおりです。
Undefined property: AjaxHelper::$Form
app/tmp/logs/debug.log 内から
echo'ing: get_class_methods($ajax) を試したところ、フォームが利用可能であることが示されたことに注意してください。
誰かがここから先に進む方法について私にアドバイスできますか?
ありがとう!