Python+django实现文件上传
程序员文章站
2023-11-13 14:50:04
1、文件上传(input标签)
(1)html代码(form表单用post方法提交)
1、文件上传(input标签)
(1)html代码(form表单用post方法提交)
<input class="btn btn-primary col-md-1" style="margin:0px 15px 25px 15px;" id="submitForm" type="button" value="提交" /> <form id="picture_form" action="/addForm/"enctype="multipart/form-data" method="post"> <table> 表格 </table> </form>
(2)jq提交表单到后台
$("#submitForm").click(function(){ //alert($("#SelectBus").val()); addNameForm();//因为是动态加载的表单内容,所以会用函数给所用标签符name值 $.ajaxSetup({ async : false }); $("#picture_form").ajaxSubmit({ resetForm:false, dataType:'json', success:function(data){ if(data=1){alert("提交成功");} else{alert("提交失败");} } }); });
(3)python后台接受处理表单所传内容,主要file处理
#自定义存储路径 rollfileName="webStatic/uploadfile/files/" rollfilePath=os.path.join(basePath,rollfileName) # req.POST.get(text[1],'')如果获取到信息,则值不是123,如果是空,没有获取到信息结果是123 if req.POST.get(text[1],'123')=='123': # 获取文件二进制流 reqfile = req.FILES[text[1]] # 获取文件名后缀 filetype=reqfile.name.split(".")[-1] # 生成随机字符串加后缀的文件名 filename=str(uuid.uuid1())+'.'+filetype # 打开文件存储路径 of = open(rollfilePath+filename, 'wb+') # 向指定路径写入文件 for chunk in reqfile.chunks(): of.write(chunk)#写入内容 of.close()#关闭连接
18 #在数据库中存储路径rollfileName+filename
(4)python后台处理用到的包
1 #生成无序字符串,替换文件名
2 import uuid
您可能感兴趣的文章:
- 用Python实现一个简单的能够上传下载的HTTP服务器
- python实现支持目录FTP上传下载文件的方法
- python实现的简单FTP上传下载文件实例
- Python上传package到Pypi(代码简单)
- Python ftp上传文件
- Python的Django中将文件上传至七牛云存储的代码分享
- Python的Tornado框架实现图片上传及图片大小修改功能
- Python+django实现简单的文件上传
- Python selenium文件上传方法汇总
- python+django快速实现文件上传
- Python实现FTP上传文件或文件夹实例(递归)
- Python使用sftp实现上传和下载功能(实例代码)
- Python中selenium实现文件上传所有方法整理总结
- python 实现上传图片并预览的3种方法(推荐)
- python实现上传下载文件功能
- python+selenium+autoit实现文件上传功能
- Python实现对百度云的文件上传(实例讲解)
- 详解python上传文件和字符到PHP服务器
上一篇: 把csv文件转化为数组及数组的切片方法