1

这些使用 jetStream InertiaJs 设置了一个新的 laravel8 项目,但是当我启动应用程序时,出现以下错误:

在此处输入图像描述

显然这是一个路由错误,博客显示了编辑 RouteServiceProvider.php 文件并定义以下变量的解决方案:

protected $namespace = 'App\\Http\\Controllers';
$this->routes(function () {
            Route::prefix('api')
                ->middleware('api')
                ->namespace($this->namespace)
                ->group(base_path('routes/api.php'));

            Route::middleware('web')
                ->namespace($this->namespace)
                ->group(base_path('routes/web.php'));
        });

网页文件路径如下:

Route::get('/', function () {
    return Inertia::render('Welcome', [
        'canLogin' => Route::has('login'),
        'canRegister' => Route::has('register'),
        'laravelVersion' => Application::VERSION,
        'phpVersion' => PHP_VERSION,
    ]);
});

Route::middleware(['auth:sanctum', 'verified'])->get('/dashboard', function () {
    return Inertia::render('Dashboard');
})->name('dashboard');

但错误仍然存​​在,请有人可以告诉我一个解决方案,或者我应该查看以找到解决方案

4

3 回答 3

3

请按照此处的说明进行操作: https ://inertiajs.com/server-side-setup

composer require inertiajs/inertia-laravel
php artisan inertia:middleware

然后应该找到类。注意到该类无法在 IDE 中解析,因此假设默认情况下未安装该类。

于 2021-04-09T01:26:03.383 回答
1

在使用它之前,您可能需要use Inertia\Inertia;在 PHP 文件的顶部。

于 2021-01-12T07:34:57.170 回答
1

根据错误,您可能错过了 App. 之前的反斜杠。将其如下放入您的 web.php 文件中: \App\Http\Middleware\HandleInertiaRequests::class

于 2021-03-14T03:28:06.407 回答