博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
form表单上传图片文件
阅读量:5020 次
发布时间:2019-06-12

本文共 739 字,大约阅读时间需要 2 分钟。

import osdef upload(request):    if request.method == 'GET':        img_list = models.Img.objects.all()        return render(request, 'upload.html', {
'img_list':img_list}) elif request.method == 'POST': upload_name = request.POST.get('name') file_obj = request.FILES.get('image') """ 只能获取文件的名字: file_name = request.POST.get('image') """ file_path = os.path.join('static', 'upload', file_obj.name) f = open(file_path, 'wb') for chuck in file_obj.chunks(): f.write(chuck) f.close() models.Img.objects.create(file_path=file_path) return redirect('/upload.html')

 

转载于:https://www.cnblogs.com/jiefangzhe/p/10779874.html

你可能感兴趣的文章
ABP中的拦截器之EntityHistoryInterceptor
查看>>
【oracle】oracle数据库建立序列、使用序列实现主键自增
查看>>
使用SQLiteDatabase操作SQLite数据库第二种方法
查看>>
vue,一路走来(12)--父与子之间传参
查看>>
css3 选择器的比较(一) -- 以字符串开头
查看>>
实现交换两个变量值的第二种方法
查看>>
英语单词学习备忘转载
查看>>
【C++】单例模式详解
查看>>
文本框根据关键字异步搜索内容
查看>>
SQLServer 基本语法
查看>>
Python入门基础知识(1) :locals() 和globals()
查看>>
python模块之multiprocessing模块, threading模块, concurrent.futures模块
查看>>
css-文字和图片在容器内垂直居中的简单方法
查看>>
杭电3784(继续xxx定律)
查看>>
PHP 的 HMAC_SHA1算法 实现
查看>>
深入理解javascript原型和闭包_____全部
查看>>
2016年中国的SaaS服务商企业研究
查看>>
HTML5:离线存储(缓存机制)-IndexDB
查看>>
9-5
查看>>
Laxcus大数据管理系统2.0(5)- 第二章 数据组织
查看>>