我正在 Laravel 中构建一个名为 Student 的模块。
我使用 Student 文件夹中的 routes.php 文件来编写与学生模块相关的路由。
当我只使用 Route::get('/list', function () { return view('welcome');});
程序时, 工作正常,没有错误 。
但是当我使用 Route::get('/list', 'StudentController@list');
时出现错误。
错误是,
文件夹结构
学生 Controller
namespace App\Student\Controllers;
use Illuminate\Http\Request;
use App\Http\Controllers\Controller;
class StudentController extends Controller
{
public function list(){
echo "Hello"
}
}
学生服务提供商
namespace App\Student;
use App\Providers\RouteServiceProvider as ServiceProvider;
use Illuminate\Support\Facades\Route;
class StudentServiceProvider extends ServiceProvider
{
/**
* Bootstrap the application services.
*
* @return void
*/
public function boot()
{
parent::boot();
}
/**
* Register the application services.
*
* @return void
*/
public function register()
{
//
}
/**
* Define the routes for the application.
*
* @internal param Router $router
*/
public function map()
{
Route::group([
'namespace' => $this->namespace,
'prefix' => 'students',
], function ($router) {
require __DIR__ . '/routes.php';
});
}
}
最佳答案
尽管 laravel 有时很神奇,但它只有在您坚持默认配置和约定时才有效。
你可以把你的 Controller 放在任何地方(哎呀,甚至从数据库加载和 eval
它们),但你必须相应地更改配置。
我怀疑您在 RouteServiceProvider 中配置了错误的命名空间。默认情况下它是 App\Http\Controllers
。
更改默认文件夹
如果所有 Controller 都在同一个文件夹中,请将其更改为 App\Student\Controllers
并忘记它。
class RouteServiceProvider extends ServiceProvider
{
// ...
protected $namespace = 'App\Student\Controllers';
// ...
}
多个模块
如果您想拥有多个模块,请将 RotueServiceProvider 命名空间配置更改为
App
并在路由文件中使用 Student\Controllers\StudentController@list
class RouteServiceProvider extends ServiceProvider
{
// ...
protected $namespace = 'App';
// ...
}
Route::get('/list', 'Student\Controllers\StudentController@list');
关于php - Laravel 5 中不存在类 App\Http\Controllers\StudentController,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/46069549/