问题总结[Python常见问题]

1.django用post传文件,如何接收和下载?

data= request.FILES.get("file")#接收到的数据类型是<class "django.core.files.uploadedfile.InMemoryUploadedFile">
# print(data,type(data)) #<class "django.core.files.uploadedfile.InMemoryUploadedFile">

with open(r"C:Users33101Desktop12新建1111.txt","wb") as p:#这样可以写进文件,不能直接p.write(chunks())
    for chunk in data.chunks():
        p.write(chunk)
hmoban主题是根据ripro二开的主题,极致后台体验,无插件,集成会员系统
自学咖网 » 问题总结