laravel 5.2 form模块调用时出错
错误代码
Call to undefined method Illuminate\Foundation\Application::bindShared()
原因
The Form and HTML helpers have been deprecated in Laravel 5.0; form模块依赖于laravel 5.0框架,所以在默认的5.2框架里调用还是会有问题,现时5.2还没有作出修复,所以需要重新安装。
解决
1.在composer.json文件的require里添加一行”laravelcollective/html”: “~5.0″完成版
"require": { "php": ">=5.5.9", "laravel/framework": "5.2.*", "illuminate/html": "^5.0", "barryvdh/laravel-ide-helper": "v2.1.2", "laravelcollective/html": "~5.0" },
composer.json位置在laravel目录根层
2.然后运行命令
composer update主要是通过composer来重新管理laravel框架的文件
以下是更新过程
composer update> php artisan clear-compiledLoading composer repositories with package informationUpdating dependencies (including require-dev) - Removing symfony/yaml (v3.0.1) - Installing symfony/yaml (v3.0.2) Downloading: 100% - Removing phpspec/prophecy (v1.5.0) - Installing phpspec/prophecy (v1.6.0) Downloading: 100% - Removing phpunit/phpunit (4.8.21) - Installing phpunit/phpunit (4.8.23) Downloading: 100% - Removing symfony/css-selector (v3.0.1) - Installing symfony/css-selector (v3.0.2) Downloading: 100% - Removing symfony/dom-crawler (v3.0.1) - Installing symfony/dom-crawler (v3.0.2) Downloading: 100% - Removing paragonie/random_compat (1.1.6) - Installing paragonie/random_compat (v1.2.0) Downloading: 100% - Removing symfony/console (v3.0.1) - Installing symfony/console (v3.0.2) Downloading: 100% - Removing symfony/finder (v3.0.1) - Installing symfony/finder (v3.0.2) Downloading: 100% - Removing symfony/debug (v3.0.1) - Installing symfony/debug (v3.0.2) Downloading: 100% - Removing symfony/http-foundation (v3.0.1) - Installing symfony/http-foundation (v3.0.2) Downloading: 100% - Removing symfony/event-dispatcher (v3.0.1) - Installing symfony/event-dispatcher (v3.0.2) Downloading: 100% - Removing symfony/http-kernel (v3.0.1) - Installing symfony/http-kernel (v3.0.2) Downloading: 100% - Removing symfony/process (v3.0.1) - Installing symfony/process (v3.0.2) Downloading: 100% - Updating symfony/routing (v3.0.1 => v3.0.2) The package has modified files: M .gitignore M Annotation/Route.php M CHANGELOG.md M CompiledRoute.php M Exception/ExceptionInterface.php M Exception/InvalidParameterException.php M Exception/MethodNotAllowedException.php M Exception/MissingMandatoryParametersException.php M Exception/ResourceNotFoundException.php M Exception/RouteNotFoundException.php-10 more files modified, choose "v" to view the full list Discard changes [y,n,v,d,s,?]? y Checking out 4686baa55a835e1c1ede9b86ba02415c8c8d6166 - Removing symfony/translation (v3.0.1) - Installing symfony/translation (v3.0.2) Downloading: 100% - Removing symfony/var-dumper (v3.0.1) - Installing symfony/var-dumper (v3.0.2) Downloading: 100% - Removing laravel/framework (v5.2.12) - Installing laravel/framework (v5.2.16) Downloading: 100% - Installing laravelcollective/html (v5.2.4) Downloading: 100%Writing lock fileGenerating autoload files> php artisan optimizeGenerating optimized class loader
3.更新成功后,修改config/app.php文件增加配置:
#增加providers数组项 'providers' => [ // ... Collective\Html\HtmlServiceProvider::class, // ... ], #增加alias数组项 'aliases' => [ // ... 'Form' => Collective\Html\FormFacade::class, 'Html' => Collective\Html\HtmlFacade::class, // ... ],
以下是完成版
'providers' => [ /* * Laravel Framework Service Providers... */ Illuminate\Auth\AuthServiceProvider::class, Illuminate\Broadcasting\BroadcastServiceProvider::class, Illuminate\Bus\BusServiceProvider::class, Illuminate\Cache\CacheServiceProvider::class, Illuminate\Foundation\Providers\ConsoleSupportServiceProvider::class, Illuminate\Cookie\CookieServiceProvider::class, Illuminate\Database\DatabaseServiceProvider::class, Illuminate\Encryption\EncryptionServiceProvider::class, Illuminate\Filesystem\FilesystemServiceProvider::class, Illuminate\Foundation\Providers\FoundationServiceProvider::class, Illuminate\Hashing\HashServiceProvider::class, Illuminate\Mail\MailServiceProvider::class, Illuminate\Pagination\PaginationServiceProvider::class, Illuminate\Pipeline\PipelineServiceProvider::class, Illuminate\Queue\QueueServiceProvider::class, Illuminate\Redis\RedisServiceProvider::class, Illuminate\Auth\Passwords\PasswordResetServiceProvider::class, Illuminate\Session\SessionServiceProvider::class, Illuminate\Translation\TranslationServiceProvider::class, Illuminate\Validation\ValidationServiceProvider::class, Illuminate\View\ViewServiceProvider::class, Collective\Html\HtmlServiceProvider::class, #注意,就是这里 'Barryvdh\LaravelIdeHelper\IdeHelperServiceProvider', // Laravel IDE helper /* * Application Service Providers... */ App\Providers\AppServiceProvider::class, App\Providers\AuthServiceProvider::class, App\Providers\EventServiceProvider::class, App\Providers\RouteServiceProvider::class, ], /* |-------------------------------------------------------------------------- | Class Aliases |-------------------------------------------------------------------------- | | This array of class aliases will be registered when this application | is started. However, feel free to register as many as you wish as | the aliases are "lazy" loaded so they don't hinder performance. | */ 'aliases' => [ 'App' => Illuminate\Support\Facades\App::class, 'Artisan' => Illuminate\Support\Facades\Artisan::class, 'Auth' => Illuminate\Support\Facades\Auth::class, 'Blade' => Illuminate\Support\Facades\Blade::class, 'Cache' => Illuminate\Support\Facades\Cache::class, 'Config' => Illuminate\Support\Facades\Config::class, 'Cookie' => Illuminate\Support\Facades\Cookie::class, 'Crypt' => Illuminate\Support\Facades\Crypt::class, 'DB' => Illuminate\Support\Facades\DB::class, 'Eloquent' => Illuminate\Database\Eloquent\Model::class, 'Event' => Illuminate\Support\Facades\Event::class, 'File' => Illuminate\Support\Facades\File::class, 'Gate' => Illuminate\Support\Facades\Gate::class, 'Hash' => Illuminate\Support\Facades\Hash::class, 'Lang' => Illuminate\Support\Facades\Lang::class, 'Log' => Illuminate\Support\Facades\Log::class, 'Mail' => Illuminate\Support\Facades\Mail::class, 'Password' => Illuminate\Support\Facades\Password::class, 'Queue' => Illuminate\Support\Facades\Queue::class, 'Redirect' => Illuminate\Support\Facades\Redirect::class, 'Redis' => Illuminate\Support\Facades\Redis::class, 'Request' => Illuminate\Support\Facades\Request::class, 'Response' => Illuminate\Support\Facades\Response::class, 'Route' => Illuminate\Support\Facades\Route::class, 'Schema' => Illuminate\Support\Facades\Schema::class, 'Session' => Illuminate\Support\Facades\Session::class, 'Storage' => Illuminate\Support\Facades\Storage::class, 'URL' => Illuminate\Support\Facades\URL::class, 'Validator' => Illuminate\Support\Facades\Validator::class, 'View' => Illuminate\Support\Facades\View::class, 'Form' => Collective\Html\FormFacade::class,#注意,就是这里 'Html' => Collective\Html\HtmlFacade::class,#注意,就是这里 ],
参考文件:
https://laravel.com/docs/5.2/upgrade#upgrade-5.2.0
https://laravelcollective.com/docs/5.1/html#installation
http://stackoverflow.com/questions/34414389/fatalerrorexception-in-htmlserviceprovider-php-line-36-laravel
本文由 PeterYuan 创作,采用 署名-非商业性使用 2.5 中国大陆 进行许可。 转载、引用前需联系作者,并署名作者且注明文章出处。神一样的少年 » laravel 5.2 form模块调用时出错

핫 AI 도구

Undresser.AI Undress
사실적인 누드 사진을 만들기 위한 AI 기반 앱

AI Clothes Remover
사진에서 옷을 제거하는 온라인 AI 도구입니다.

Undress AI Tool
무료로 이미지를 벗다

Clothoff.io
AI 옷 제거제

AI Hentai Generator
AI Hentai를 무료로 생성하십시오.

인기 기사

뜨거운 도구

메모장++7.3.1
사용하기 쉬운 무료 코드 편집기

SublimeText3 중국어 버전
중국어 버전, 사용하기 매우 쉽습니다.

스튜디오 13.0.1 보내기
강력한 PHP 통합 개발 환경

드림위버 CS6
시각적 웹 개발 도구

SublimeText3 Mac 버전
신 수준의 코드 편집 소프트웨어(SublimeText3)

뜨거운 주제









Laravel은 직관적 인 플래시 방법을 사용하여 임시 세션 데이터 처리를 단순화합니다. 응용 프로그램에 간단한 메시지, 경고 또는 알림을 표시하는 데 적합합니다. 데이터는 기본적으로 후속 요청에만 지속됩니다. $ 요청-

PHP 로깅은 웹 애플리케이션을 모니터링하고 디버깅하고 중요한 이벤트, 오류 및 런타임 동작을 캡처하는 데 필수적입니다. 시스템 성능에 대한 귀중한 통찰력을 제공하고 문제를 식별하며 더 빠른 문제 해결을 지원합니다.

PHP 클라이언트 URL (CURL) 확장자는 개발자를위한 강력한 도구이며 원격 서버 및 REST API와의 원활한 상호 작용을 가능하게합니다. PHP CURL은 존경받는 다중 프로모토콜 파일 전송 라이브러리 인 Libcurl을 활용하여 효율적인 execu를 용이하게합니다.

Laravel은 간결한 HTTP 응답 시뮬레이션 구문을 제공하여 HTTP 상호 작용 테스트를 단순화합니다. 이 접근법은 테스트 시뮬레이션을보다 직관적으로 만들면서 코드 중복성을 크게 줄입니다. 기본 구현은 다양한 응답 유형 단축키를 제공합니다. Illuminate \ support \ Facades \ http를 사용하십시오. http :: 가짜 ([ 'google.com'=> 'Hello World', 'github.com'=> [ 'foo'=> 'bar'], 'forge.laravel.com'=>

고객의 가장 긴급한 문제에 실시간 인스턴트 솔루션을 제공하고 싶습니까? 라이브 채팅을 통해 고객과 실시간 대화를 나누고 문제를 즉시 해결할 수 있습니다. 그것은 당신이 당신의 관습에 더 빠른 서비스를 제공 할 수 있도록합니다.

기사는 PHP 5.3에 도입 된 PHP의 LSB (Late STATIC BING)에 대해 논의하여 정적 방법의 런타임 해상도가보다 유연한 상속을 요구할 수있게한다. LSB의 실제 응용 프로그램 및 잠재적 성능

Alipay PHP ...

이 기사에서는 프레임 워크에 사용자 정의 기능 추가, 아키텍처 이해, 확장 지점 식별 및 통합 및 디버깅을위한 모범 사례에 중점을 둡니다.
