parseExtension
Cakephp 2.3.0 で for jsonをセットアップしました。エラーは表示されません。できます?
どうすればテストできますか?
RoR では、非常に簡単にテストできます。
https://mydomain.de/view/4.json
Cakephp でどのように動作しますか?
私のView-Actionはこれです。
public function view($id = null) {
if (!$this->Atla->exists($id)) {
throw new NotFoundException(__('Invalid atla'));
}
$options = array('conditions' => array('Atla.' . $this->Atla->primaryKey => $id));
$this->set('atla', $this->Atla->find('first', $options));
$this->Atla->id = $id;
$result = $this->Atla->read();
$this->response->type('json');
$this->response->body(json_encode($result));
return $this->response;
$this->set(compact('atlas'));
}
常に json-request を受け取るのはなぜですか?