stevenyangecho / laravel-u-editor

UEditor for laravel5. Support i18n. UEditor is a Rich Text Web Editor From Baidu.
MIT License
306 stars 82 forks source link

[解决方案]Larva 5.4中 粘贴网络富文本内容包含图片时Controller.php 中Input错误 #51

Open Yi-pixel opened 6 years ago

Yi-pixel commented 6 years ago

错误信息如下 tim 20180412143700 解决方案: 打开位置

vendor/stevenyangecho/laravel-u-editor/src/Controller.php:124

\Input 修改为Input 并在文件头部加入 use Illuminate\Support\Facades\Input; 在下面插入

is_null($sources) && $sources = [];

tim 20180412144008

即可解决。