saas建站 cms,优优群排名优化软件,男女做暖暖的试看网站酥酥影视,深圳市宝安区区长在使用django时不知道怎么保存图片#xff0c;又不想用它的form #xff0c;在网上找了许久#xff0c;终于找到个解决方案#xff0c;利用PIL.image 将POST上来的图片保存到media目录下#xff0c;然后再修改models from PIL import Imagescreen_name request.POST.get(…在使用django时不知道怎么保存图片又不想用它的form 在网上找了许久终于找到个解决方案利用PIL.image 将POST上来的图片保存到media目录下然后再修改models from PIL import Imagescreen_name request.POST.get(screen_name)mail request.POST.get(mail)gender request.POST.get(gender)img request.FILES.get(image)img_file Image.open(img)#保存图片path MEDIA_ROOT /profile_img/file request.user.username _profile.jpgimg_file.thumbnail((200,200),Image.ANTIALIAS)img_file.save(path file)#更改用户信息user_info UsersInfo.objects.get(usernamerequest.user.username)user_info.profile_img /media/profile_img/ fileuser_info.save()