Rumah > Soal Jawab > teks badan
Saya boleh menyediakan halaman menggunakan inertia
seperti ini:
Route::inertia('/home', 'home');
Untuk memuatkan halaman yang mengandungi data pangkalan data saya perlu melakukan ini:
Route::get('/terms', [LegalPageController::class, 'index']);
Dalam pengawal:
class LegalPageController extends Controller { public function index() { $record = Terms::first(); return inertia('terms', compact('record')); } }
Adakah ada cara untuk memendekkannya kepada:
Route::inertia('/home', 'home', [Controller::class, 'index']);
P粉2933419692024-03-29 09:23:19
Anda tidak boleh melakukan ini
Route::inertia('/home', 'home', [Controller::class, 'index']);
Gunakan kaedah ini pula
#routes/web.php Route::get('home', [Controller::class, 'index']); #App\Http\COntrollers\Controller.php namespace App\Http\Controllers class Controller extends Controller { # ... Inertia::render('home'); }