API route:list 中未显示路线
API Route Not Showing in route:list
我在 routes->api 中创建了 Route,但是当我这样做时 php artisan route:list
,它显示了除这条路线之外的所有路线:
Route::apiResources([
'vh-invoice' => 'API\VhInvoiceController'
]);
即使我删除了一些路线,它也显示了相同的 route:list,就像我一样,删除了下面的这些路线,但在 route:list 中,它也显示了已删除的路线,正如您在下图。
Route::get('findVTI', 'API\TicketInvoiceController@searchVTI');
Route::get('selectVTI', 'API\TicketInvoiceController@selectVTI');
您的路线可能已缓存,需要清除缓存。您可以运行php artisan route:cache
刷新缓存。
我在 routes->api 中创建了 Route,但是当我这样做时 php artisan route:list
,它显示了除这条路线之外的所有路线:
Route::apiResources([
'vh-invoice' => 'API\VhInvoiceController'
]);
即使我删除了一些路线,它也显示了相同的 route:list,就像我一样,删除了下面的这些路线,但在 route:list 中,它也显示了已删除的路线,正如您在下图。
Route::get('findVTI', 'API\TicketInvoiceController@searchVTI');
Route::get('selectVTI', 'API\TicketInvoiceController@selectVTI');
您的路线可能已缓存,需要清除缓存。您可以运行php artisan route:cache
刷新缓存。