1、文件上傳(input標簽)(1)html代碼(form表單用post方法提交)1 2 3 4 表格5 6 (2)jq提交表單到後臺 1 $("#submitForm").click(function(){ 2 //alert($("#SelectBus").val())...
1、文件上傳(input標簽)
(1)html代碼(form表單用post方法提交)
1 <input class="btn btn-primary col-md-1" style="margin:0px 15px 25px 15px;" id="submitForm" type="button" value="提交" /> 2 <form id="picture_form" action="/addForm/"enctype="multipart/form-data" method="post"> 3 <table> 4 表格 5 </table> 6 </form>
(2)jq提交表單到後臺
1 $("#submitForm").click(function(){ 2 //alert($("#SelectBus").val()); 3 addNameForm();//因為是動態載入的表單內容,所以會用函數給所用標簽符name值 4 $.ajaxSetup({ 5 async : false 6 }); 7 $("#picture_form").ajaxSubmit({ 8 resetForm:false, 9 dataType:'json', 10 success:function(data){ 11 if(data=1){alert("提交成功");} 12 else{alert("提交失敗");} 13 } 14 }); 15 });
(3)python後臺接受處理表單所傳內容,主要file處理
1 #自定義存儲路徑 2 rollfileName="webStatic/uploadfile/files/" 3 rollfilePath=os.path.join(basePath,rollfileName) 4 # req.POST.get(text[1],'')如果獲取到信息,則值不是123,如果是空,沒有獲取到信息結果是123 5 if req.POST.get(text[1],'123')=='123': 6 # 獲取文件二進位流 7 reqfile = req.FILES[text[1]] 8 # 獲取文件名尾碼 9 filetype=reqfile.name.split(".")[-1] 10 # 生成隨機字元串加尾碼的文件名 11 filename=str(uuid.uuid1())+'.'+filetype 12 # 打開文件存儲路徑 13 of = open(rollfilePath+filename, 'wb+') 14 # 向指定路徑寫入文件 15 for chunk in reqfile.chunks(): 16 of.write(chunk)#寫入內容 17 of.close()#關閉連接 18 #在資料庫中存儲路徑rollfileName+filename
(4)python後臺處理用到的包
1 #生成無序字元串,替換文件名 2 import uuid