我有一个问题,如何模拟我的路线,以便正确识别它们。我有以下路线:
$app->get('/courses/:id', function ($id) use ($app) {
$app->render(200, array("Id parameter"));
});
$app->get('/courses/attendees', function () use ($app) {
$app->render(200, array("attendee Parameter"));
});
$app->get('/courses/search', function () use ($app) {
$app->render(200, array("search Parameter"));
});
如果我调用URI localhost / courses / 12,我将获得预期结果“Id参数”,但如果我调用URI localhost / courses / search或localhost / courses / attendees,我仍会得到相同的结果。
似乎我在这里遗漏了一些东西......