| 123456789101112131415161718192021 | <?phpnamespace App\Http\Controllers\Admin;use App\Http\Controllers\Controller;use App\Http\Services\AliYunOSService;use Illuminate\Http\Request;class AliYunOssController extends Controller{    public function upload(Request $request)    {        $file = $request->file('file');        $aliYunOSService = new AliYunOSService();        $result = $aliYunOSService->upload($file->getRealPath(), $file->getClientOriginalName());        return response()->json(['message' => '上传成功', 'path' => $result]);    }}
 |