CakePHP 2: Hello WorldCakePHP 2: JSON をレスポンスとして返すCakePHP 2: GET、POST リクエストを扱うCakePHP 2: Cookie とセッションを扱うCakePHP 2: FormHelper を使うCakePHP 2: データベースにアクセスするCakePHP 2: テーブルを使わないモデルCakePHP 2: Basic 認証 viewClass プロパティに ‘json’ を指定する。 class HelloController extends AppController { public function index() { $ret = array('foo' => 'bar'); $this->viewClass = 'json'; $this->set(compact('ret')); $this->set('_ser