laravel-admin-extensions/large-file-upload

您好,这边 如何把 url 路径 下划线 _ 改成 /

asjianghang123 opened this issue · 2 comments

file_201910_87785a755a0ebafe18015f5d68b46f7c.jpg
改成: file/2019/8875 从哪个地方改啊.

file_201910_87785a755a0ebafe18015f5d68b46f7c.jpg
改成: file/2019/8875 从哪个地方改啊.

请问使用的是哪个版本?这个一般是配置问题,需要确保aetherupload.php配置文件里有默认的file资源分组。

使用laravel-admin 的 Form 回调,

$form->saving(function(Form $form){

$form->file_url = str_replace('_','/',$form->file_url);

})

或者使用官方函数来
https://github.com/peinhu/AetherUpload-Laravel/blob/master/src/SavedPathResolver.php#L13