LoginSignup
2
1

More than 5 years have passed since last update.

CakePHP 2.8 GET/POST を Routingで設定する

Posted at

Router::connect() の第2引数の配列に、[method] という形で、POST/GETを指定することで可能になります。

// APP . Config/routes.php
CakePlugin::routes();

// GET
Router::connect(
    "/users/index",
    array(
        'controller' => 'Users',
        'action' => "index",
        '[method]' => 'GET',
    )
);
// POST
Router::connect(
    "/users/create",
    array(
        'controller' => 'Users',
        'action' => "create",
        '[method]' => 'POST',
    )
);

参考

2
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
1