下面是我的示例路由我有一个名为Category的自定义类,但我收到的错误是Class 'app\Category' not found
$app->get('/category',function($request, $response, $args){
$categories = new app\Category();
$categories->getCategories();
});
如何加载此类以便在slim framework V3中使用它
答案 0 :(得分:1)
通过在composer.json
中添加自动加载块,通过composer autoloader加载它