Class 'Illuminate\Html\HtmlServiceProvider' 未找到 Laravel 5

Class 'Illuminate\Html\HtmlServiceProvider' not found Laravel 5

我正在尝试使用 Laravel 5 添加 HtmlServiceProvider。

我不断收到以下错误:

FatalErrorException in compiled.php line 6391: Class 'Illuminate\Html\HtmlServiceProvider' not found

这是我的提供者的样子:

'providers' => [

    /*
     * Laravel Framework Service Providers...
     */
    'Illuminate\Foundation\Providers\ArtisanServiceProvider',
    'Illuminate\Auth\AuthServiceProvider',
    'Illuminate\Bus\BusServiceProvider',
    'Illuminate\Cache\CacheServiceProvider',
    'Illuminate\Foundation\Providers\ConsoleSupportServiceProvider',
    'Illuminate\Routing\ControllerServiceProvider',
    'Illuminate\Cookie\CookieServiceProvider',
    'Illuminate\Database\DatabaseServiceProvider',
    'Illuminate\Encryption\EncryptionServiceProvider',
    'Illuminate\Filesystem\FilesystemServiceProvider',
    'Illuminate\Foundation\Providers\FoundationServiceProvider',
    'Illuminate\Hashing\HashServiceProvider',
    'Illuminate\Mail\MailServiceProvider',
    'Illuminate\Pagination\PaginationServiceProvider',
    'Illuminate\Pipeline\PipelineServiceProvider',
    'Illuminate\Queue\QueueServiceProvider',
    'Illuminate\Redis\RedisServiceProvider',
    'Illuminate\Auth\Passwords\PasswordResetServiceProvider',
    'Illuminate\Session\SessionServiceProvider',
    'Illuminate\Translation\TranslationServiceProvider',
    'Illuminate\Validation\ValidationServiceProvider',
    'Illuminate\View\ViewServiceProvider',
    'Illuminate\Html\HtmlServiceProvider',

    /*
     * Application Service Providers...
     */
    'App\Providers\AppServiceProvider',
    'App\Providers\BusServiceProvider',
    'App\Providers\ConfigServiceProvider',
    'App\Providers\EventServiceProvider',
    'App\Providers\RouteServiceProvider',

],

我的别名是这样的 app.php:

'aliases' => [

    'App'       => 'Illuminate\Support\Facades\App',
    'Artisan'   => 'Illuminate\Support\Facades\Artisan',
    'Auth'      => 'Illuminate\Support\Facades\Auth',
    'Blade'     => 'Illuminate\Support\Facades\Blade',
    'Bus'       => 'Illuminate\Support\Facades\Bus',
    'Cache'     => 'Illuminate\Support\Facades\Cache',
    'Config'    => 'Illuminate\Support\Facades\Config',
    'Cookie'    => 'Illuminate\Support\Facades\Cookie',
    'Crypt'     => 'Illuminate\Support\Facades\Crypt',
    'DB'        => 'Illuminate\Support\Facades\DB',
    'Eloquent'  => 'Illuminate\Database\Eloquent\Model',
    'Event'     => 'Illuminate\Support\Facades\Event',
    'File'      => 'Illuminate\Support\Facades\File',
    'Hash'      => 'Illuminate\Support\Facades\Hash',
    'Input'     => 'Illuminate\Support\Facades\Input',
    'Inspiring' => 'Illuminate\Foundation\Inspiring',
    'Lang'      => 'Illuminate\Support\Facades\Lang',
    'Log'       => 'Illuminate\Support\Facades\Log',
    'Mail'      => 'Illuminate\Support\Facades\Mail',
    'Password'  => 'Illuminate\Support\Facades\Password',
    'Queue'     => 'Illuminate\Support\Facades\Queue',
    'Redirect'  => 'Illuminate\Support\Facades\Redirect',
    'Redis'     => 'Illuminate\Support\Facades\Redis',
    'Request'   => 'Illuminate\Support\Facades\Request',
    'Response'  => 'Illuminate\Support\Facades\Response',
    'Route'     => 'Illuminate\Support\Facades\Route',
    'Schema'    => 'Illuminate\Support\Facades\Schema',
    'Session'   => 'Illuminate\Support\Facades\Session',
    'Storage'   => 'Illuminate\Support\Facades\Storage',
    'URL'       => 'Illuminate\Support\Facades\URL',
    'Validator' => 'Illuminate\Support\Facades\Validator',
    'View'      => 'Illuminate\Support\Facades\View',
    'Form'      => 'Illuminate\Html\FormFacade',
    'Html'      => 'Illuminate\Html\HtmlFacade',

],

最后我在我的 composer.json

中添加了这个
"require": {
    "laravel/framework": "5.0.*",
    "illuminate/html": "~5.0"
},

不知怎么的,我一直收到这个错误,所以我希望有人能帮我解决这个问题:)

提前致谢!

该错误表明它找不到服务提供商,因此请确保您进行了作曲家更新。如果您确实进行了作曲家更新,请检查您的供应商文件夹以确保它已引入依赖项。

首先将这一行添加到composer.json

"illuminate/html": "~5.0"

然后做一个composer update 等待更新完成,然后打开config/app.php 添加:

'Illuminate\Html\HtmlServiceProvider', 

providers 数组和这个:

'Form'      => 'Illuminate\Html\FormFacade',
'Html'      => 'Illuminate\Html\HtmlFacade',

aliases 数组,并确保在 blade 中使用 Html 或在任何地方使用小写 'Html' 而不是 HTML

这里有一个参考 link: http://thegeekyland.blogspot.com/2015/11/class-illuminatehtmlhtmlserviceprovider.html

尝试以下步骤 编辑项目的 composer.json 文件。

"require": {
"laravelcollective/html": "~5.0"

}

接下来,从终端更新 Composer:

作曲家更新

接下来,将您的新提供商添加到 config/app 的提供商数组中。php:

'providers' => [ // ... 'Collective\Html\HtmlServiceProvider', // ... ],

最后,在config/app的别名数组中添加两个class别名。php:

'aliases' => [
// ...
  'Form' => 'Collective\Html\FormFacade',
  'Html' => 'Collective\Html\HtmlFacade',
// ...

],

我发现这个问题的另一个原因:

在 ../Vendor 目录中有时会有一个名为 "config.php" 的文件,要么完全删除该文件,要么在其中找到类似的东西 这一行:

array (
  ...
  28 => 'Illuminate\Html\HtmlServiceProvider',
  ...
),

,并删除该行,然后执行 "composer update" 命令,这会有所帮助。 (它对我也有帮助)。

Illuminate\Html\HtmlServiceProvider 不再是核心元素。 Laravel 已从核心框架中删除的组件在 laravelcollective.com 上可用,您的 html 和表单组件可在此处找到:

http://laravelcollective.com/docs/5.0/html

将此添加到您的 composer.json :

"laravelcollective/html": "~5.0"

然后更新作曲家:

composer update

然后在 config/app.php

中添加供应商
'Collective\Html\HtmlServiceProvider',

最后在同一个文件中添加两个别名:

'Form' => 'Collective\Html\FormFacade',
'Html' => 'Collective\Html\HtmlFacade',

要使用 laravel html 帮助程序,您需要在 composer.json 文件中要求依赖项并使用 namespance.For 完整过程,请关注我的博客。 http://www.kingpabel.com/laravel-html-helper/

更新作曲家时仔细检查您是否在正确的目录中

运行 这个在cmd里

php artisan  Illuminate\Html 

然后在app.php

中添加变量

你也可以这样使用
Illuminate\Html\HtmlServiceProvider::class,

'Form'      => Illuminate\Html\FormFacade::class,
'Html'      => Illuminate\Html\HtmlFacade::class,

Illuminate/HTML 软件包已被弃用

使用:laravelcollective/html

composer require laravelcollective/html

在 config/app 中添加此行。php

在提供商组中:

Collective\Html\HtmlServiceProvider::class,

在别名组中:

'Form' => Collective\Html\FormFacade::class,
'Html' => Collective\Html\HtmlFacade::class,

您可以按照 Laravel 文档的下方 link 进行操作,在那里您可以找到所有版本或 Laravel 即 5.0、5.1、5.2、5.3

的解决方案

https://laravelcollective.com/docs/5.3/html