错误信息: There are no commands defined in the "route" namespace.
给route.php添加namespace route;
返回错误: Fatal error: Class 'route\Route' not found
添加use think\Route;
返回错误:Non-static method think\Route::get() should not be called statically
修改为use think\facade\Route;
又返回:There are no commands defined in the "route" namespace.
没救了。。。
最佳答案