• 主页

  • 投资

  • IT

    🔥
  • 设计

  • 销售

  • 共43篇

    python3.X - Web - Django3.2.9

关闭

返回栏目

关闭

返回python3.X - Web - Django3.2.9栏目

31 - 功能 - 接受图片

作者:

贺及楼

成为作者

更新日期:2024-03-07 11:34:14

接受图片

models.py

  1. class photo(models.Model):
  2. class Meta:
  3. db_table = 'photo'
  4. verbose_name = '图片表'
  5. id = models.AutoField(primary_key=True)
  6. image = models.ImageField(upload_to='photos', default='avatar.jpg')
  7. # manage.py 同级自动增加photos文件夹放置图片

url.py

  1. from django.urls import path
  2. urlpatterns = [
  3. # 上传图片
  4. path("upload_photo/", upload_photo_fun),
  5. ]

url.py

  1. def upload_photo_fun(request):
  2. # 获取上传文件的处理对象
  3. try:
  4. pic = request.FILES.get('pic')
  5. print(pic) # 输出图片名字
  6. type = request.POST.get("type", None)
  7. data = {"type":type, "image":pic}
  8. photo.objects.create(**data)
  9. obj = photo.objects.get(type=type)
  10. name = obj.image
  11. return JsonResponse({"code": 200, 'message': '新增成功',"name":str(name)})
  12. except Exception as e:
  13. return JsonResponse({"code": 500, 'error': str(e)})
xx image
xx photos/xx.jpg
xx photos/cc.png

调整nginx配置

  1. http{
  2. client_max_body_size 300m
  3. # 设定通过nginx上传文件的大小
  4. # 表示客户端请求的最大可接受body大小
  5. # 它出现在请求头部的Content-Length字段
  6. # 如果请求大于指定的值,客户端将收到一个"Request Entity Too Large" (413)错误,通常在上传文件到服务器时会受到限制
  7. }