我在Slim框架中使用PHP。在Slim中,通过在路由段周围加上括号,可以使路由段成为可选的。现在,当我忽略了可选的路由段时,我已经设置了PHP,我得到了以下错误:
Type: Invoker\Exception\NotEnoughParametersException
Message: Unable to invoke the callable because no value was given for parameter 1 ($limit)
这是我的路线:
$app->get('/api2/products[/{limit}]', ['\App\Contr