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 请求?