fix: 更新文件目录计算

This commit is contained in:
邹景立 2024-10-17 11:25:17 +08:00
parent 34fbc008a5
commit 271f7481da
2 changed files with 2 additions and 3 deletions

View File

@ -56,7 +56,7 @@ class Plugs extends Controller
}
}
$this->field = $this->app->request->get('field', 'icon');
$this->fetch(realpath(__DIR__ . '/../../view/api/icon.html'));
$this->fetch(dirname(__DIR__, 2) . '/view/api/icon.html');
}
/**

View File

@ -52,10 +52,9 @@ class Upload extends Controller
$allows = str2arr(sysconf('storage.allow_exts|raw'));
if (empty($uuid) && $unid > 0) $allows = array_intersect($exts, $allows);
foreach ($allows as $ext) $data['exts'][$ext] = Storage::mime($ext);
$template = realpath(__DIR__ . '/../../view/api/upload.js');
$data['exts'] = json_encode($data['exts'], JSON_UNESCAPED_UNICODE);
$data['nameType'] = sysconf('storage.name_type|raw') ?: 'xmd5';
return view($template, $data)->contentType('application/x-javascript');
return view(dirname(__DIR__, 2) . '/view/api/upload.js', $data)->contentType('application/x-javascript');
}
/**