私のコードは次のようになります。
if ($this->request->is('ajax')) {
$this->Comment->Save();
$this->set('comment', $this->Comment->read());
$this->set('_serialize', array('comment');
}
Ajax で応答する代わりに、ビューが見つからないというエラーが表示されます。json で応答するために必要なものは他にありますか? これは、応答ヘルパーで「自動的に」処理されると思いました。