Django Rest Framework 图片上传和获取图片

Django Rest Framework image upload and get image

我有一个用例,其中 angular 前端需要提交图像,而 Django Rest Framework API 需要在图像上传调用期间将其保存到文件系统。在图像下载场景中,图像还需要从文件系统提供。
如果有人已经弄清楚了这个用例,请 post 它。非常感谢您的帮助。

Django REST 框架提供an ImageField that can handle the uploading of images using Django's file upload handlers. So you might be interested in learning how it is done in Django first: Need a minimal Django file upload example