tinymce使用附件上傳的接口報錯,無法獲取文件后綴,導(dǎo)致圖片上傳失敗
plugin\admin\app\controller\UploadController類 base方法的 $ext = strtolower($file->getUploadExtension()); 為空
"msg": "Could not move the file \"E:\phpEnv\temp\php\worD3E2.tmp\" to \"E:\gitee\wekbbs/plugin/admin/public/upload/files/20230711/64acd37f25a8.\"
修復(fù)283行:
if (!$ext) {
$img_type = explode('/', $file->getUploadMimeType());
$ext = $img_type[1];
}