dcasia / nova-filepond

A Nova field for uploading File, Image and Video using Filepond.
MIT License
49 stars 28 forks source link

Use cloud storage(S3 or OSS) wrong #34

Closed imnpc closed 1 year ago

imnpc commented 1 year ago

Laravel 10 Nova 4.27.14

after uploading image, save and edit, can't load the uploaded image from cloud storage(S3 or OSS). if use local disk,it will work ok.

WX20231012-143510@2x

Filepond::make(__('pictures'),'pictures')
              ->multiple()
              ->allowReorder()
              ->disk(config('filesystems.default'))
              ->path('goods/pictures/'. date('Y/m/d')) // 图片存储路径
              ->image(),
milewski commented 1 year ago

Hao le, xianzai keyi yong v1.0.1

imnpc commented 1 year ago

Now work ok Thanks!