返回顶部
首页 > 资讯 > 后端开发 > PHP编程 >解决laravel9提示“Target *classController does not exist”问题
  • 430
分享到

解决laravel9提示“Target *classController does not exist”问题

php前端javascript 2023-08-31 07:08:13 430人浏览 安东尼
摘要

一淘模板给大家带来了关于Laravel的相关知识,其中主要给大家介绍在Laravel9中提示了Target *classController does not exist,该怎么办?下面一起来看一下解决方案,希望对需要的朋友有所帮助。 关

一淘模板给大家带来了关于Laravel的相关知识,其中主要给大家介绍在Laravel9中提示了Target *classController does not exist,该怎么办?下面一起来看一下解决方案,希望对需要的朋友有所帮助。

关于 laravel 9 提示 Target *classController does not exist

关于 laravel 9 api 提示 Target class [App\\Http\\Controllers\\CaptchasController] does not exist 解决方法

打开 app\Providers\RouteServiceProvider.PHP 修改如图

class RouteServiceProvider extends ServiceProvider{   .   .   .   .   .   protected $namespace ='App\\Http\\Controllers';  public  function boot()   {         $this->configureRateLimiting();         $this->routes(function () {            Route::middleware('api')                ->prefix('api')                ->namespace($this->namespace)                ->group(base_path('routes/api.php'));            Route::middleware('web')            ->namespace($this->namespace)            ->group(base_path('routes/WEB.php'));        });    }}

打开 app\Providers\RouteServiceProvider.php 修改如图

name('api.v1.')    ->namespace("Api")//添加命名空间    ->group(function () {         Route::middleware('throttle:'.         config('api.rate_limits.sign'))        ->group(function () {            // Route::post('captchas', [CaptchasController::class, 'store'])->name('captchas.store'); ---原来的            Route::post('captchas', 'CaptchasController@store')            ->name('captchas.store');// 修改成这样即可         });        Route::middleware('throttle:' .config('api.rate_limits.access'))                ->group(function () {            });    })

 

来源地址:https://blog.csdn.net/qq_29701691/article/details/128798741

--结束END--

本文标题: 解决laravel9提示“Target *classController does not exist”问题

本文链接: https://www.lsjlt.com/news/384559.html(转载时请注明来源链接)

有问题或投稿请发送至: 邮箱/279061341@qq.com    QQ/279061341

猜你喜欢
软考高级职称资格查询
编程网,编程工程师的家园,是目前国内优秀的开源技术社区之一,形成了由开源软件库、代码分享、资讯、协作翻译、讨论区和博客等几大频道内容,为IT开发者提供了一个发现、使用、并交流开源技术的平台。
  • 官方手机版

  • 微信公众号

  • 商务合作