我使用 laravel 8。
我在以下位置定义受保护的命名空间RouteServiceProvider
:
protected $namespace = 'App\Http\Controllers';
然后通过以下路线使用livewire:
Route::get('/xxx' , App\Http\Livewire\Counter::class);
但我有以下错误:
Invalid route action: [App\Http\Controllers\App\Http\Livewire\Counter].
注意:这增加App\Http\Controllers
了我的第一个动作!!!如果全部删除protected $namespace
就可以了。但我不想删除它。
有没有办法让我同时拥有 <code>controller protected namespace (for controller namespace) 和Route::get
for Full-Page Components
?