首页 > 代码库 > Laravel踩坑笔记——illuminate/html被抛弃
Laravel踩坑笔记——illuminate/html被抛弃
起因
在使用如下代码的时候发生报错
{!! Form::open() !!}
错误信息
[Symfony\Component\Debug\Exception\FatalErrorException]Call to undefined method Illuminate\Foundation\Application::bindShared()
原因
在Stack Overflow找到相关问题(Call to undefined method Illuminate\Foundation\Application::bindShared())
由大家的回答和官方文档(Upgrade Guide)中可以知道,bindShared已经被抛弃
The actual issue is that L 5.1 has depreciated bindShared and illuminate still uses it. From the L5 upgrade page: The service container‘s
bindShared method has been deprecated in favor of the singleton method.--panthro
解决
打开config/app.php
移除以下句
providers中的‘Illuminate\Html\HtmlServiceProvider‘aliases中的‘Form‘ => ‘Illuminate\Html\FormFacade‘,‘HTML‘ => ‘Illuminate\Html\HtmlFacade
移除illuminate/html包
composer remove illuminate/htmlcomposer update
从官方文档我们可以看到,代替的包为laravelcollective/html
所以
安装laravelcollective/html
composer require laravelcollective/html
回到config/app.php
加入如下语句
providers中的Collective\Html\HtmlServiceProvider::class,aliases中的‘Form‘=>Collective\Html\FormFacade::class,‘Html‘=>Collective\Html\HtmlFacade::class,
问题解决
另外
1.本文写作时使用Laravel版本5.4,PHP版本5.6
2.附上Laravel关于Forms & HTML的文档(基于5.4)——laravelcollective/html
Laravel踩坑笔记——illuminate/html被抛弃
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。