本期视频登录后即可观看

如何实现在 WangEditor 中上传图片以及视频

本期 Laravel 9 入门视频教程咱们学习一下如何实现在 WangEditor 中上传图片以及视频
龙飞 2023.02.25 09:50

为何上传图片,console可以拿到文件信息和url信息,但是访问url 出现404错误,图片不显示? 

 http://localhost/images/SwiCNUoZxVp8r0E6Q79iKhQ03RlLGF6pbBzrY7WE.png 


刚才研究了下,原来要重新配置下filesystem.php文件, links 要增加images link:

'links' => [

        public_path('storage') => storage_path('app/public'),

        public_path('images') => storage_path('app/public/images'),

    ],

然后执行 ' php artisan storage:link ' , 就可以在编辑器看到上传的图片了。




Levy 2023.05.04 10:05

CODING10

Coding10


是不是跟axios引入有关呢?谢谢!


laravel 10版本

Coding10


edit.blade.php  编辑里面的修改时间format好像也遇到报错。是不是同一个引入问题呢?感谢!

Coding10

Coding10

感谢兄弟帮忙看看,需要怎么写才能支持,感谢!

国营 2023.05.04 14:41

文档一定要看啊


class Post extends Model
{
    /**
     * The attributes that should be cast.
     *
     * @var array
     */
    protected $casts = [
        'published_at' => 'datetime',
    ];
}

Laravel 10 里面取消了 $dates 的属性指定方式,你几天之前发的哪个问题通过这个就可以解决,不需要那么麻烦。

Levy 2023.05.04 14:45

收到,感谢兄弟!

国营 2023.05.04 14:58

 https://laravel.com/docs/10.x/eloquent-mutators#attribute-casting 

其他需要属性转化映射的好好看看文档即可。

Levy 2023.05.12 07:22

laravel10版本上传图片报:formData is not defined 

请问是哪里的问题呢?谢谢!

CODING10

CODING10

向前 2023.12.22 07:45

大写的才行哦, let params = new FormData();

微信扫码登录