отсутствующий маршрут в cakephp при создании post api в postman - PullRequest
0 голосов
/ 21 ноября 2018

Я создаю post api в cakephp3.6, используя почтальон, но когда я отправляю запрос, он выдает ошибку вроде

Missing Route
Error: A route matching "/apis/register" could not be found.

Ниже мой код в файле config / route.php

Router::scope('/apis', ['Prefix' => 'apis'], function ($routes) {
    $routes->applyMiddleware('csrf');
    $routes->get('/all', ['controller' => 'Apis', 'action' => 'index']);
    $routes->post('/register', ['controller' => 'Apis', 'action' => 'register']);
});

Если кто-нибудь знает решение, пожалуйста, помогите.

...