Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
下面是我的示例路线我有一个名为 Category 的自定义类,但我收到这样的错误 Class 'app\Category' not found
Class 'app\Category' not found
$app->get('/category',function($request, $response, $args){ $categories = new app\Category(); $categories->getCategories(); });
如何加载此类以便在苗条框架 V3 中使用它
通过在 composer.json 中添加自动加载块通过 composer autoloader 加载它