您好,登錄后才能下訂單哦!
如何在PHP中利用AjaxForm實(shí)現(xiàn)一個(gè)文件上傳功能?針對(duì)這個(gè)問題,這篇文章詳細(xì)介紹了相對(duì)應(yīng)的分析和解答,希望可以幫助更多想解決這個(gè)問題的小伙伴找到更簡單易行的方法。
在使用ajaxForm方法之前,首先需要安裝form.js的插件,網(wǎng)上有;
一、首先說用法,ajaxForm可以接收0或1個(gè)參數(shù),該參數(shù)可以是一個(gè)變量、一個(gè)對(duì)象或回調(diào)函數(shù),這個(gè)對(duì)象主要有以下參數(shù):
var object= { url:url, //form提交數(shù)據(jù)的地址 type:type, //form提交的方式(method:post/get) target:target, //服務(wù)器返回的響應(yīng)數(shù)據(jù)顯示的元素(Id)號(hào) beforeSerialize:function(){} //序列化提交數(shù)據(jù)之前的回調(diào)函數(shù) beforeSubmit:function(){}, //提交前執(zhí)行的回調(diào)函數(shù) success:function(){}, //提交成功后執(zhí)行的回調(diào)函數(shù) error:function(){}, //提交失敗執(zhí)行的函數(shù) dataType:null, //服務(wù)器返回?cái)?shù)據(jù)類型 clearForm:true, //提交成功后是否清空表單中的字段值 restForm:true, //提交成功后是否重置表單中的字段值,即恢復(fù)到頁面加載時(shí)的狀態(tài) timeout:6000 //設(shè)置請(qǐng)求時(shí)間,超過該時(shí)間后,自動(dòng)退出請(qǐng)求,單位(毫秒)?! ? } ajaxForm js的code $(function(){ $("form").ajaxForm(object); })
實(shí)例具體代碼code
htmlcode
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="X-UA-Compatible" content="IE=7" /> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <meta name="ROBOTS" content="NOODP"> <title>PHP+Ajax異步帶進(jìn)度條上傳文件實(shí)例_php</title> <meta http-equiv="X-UA-Compatible" content="IE=EDGE" /> <meta name="keywords" content="php,ajax異步上傳文件,ajax,異步加載,進(jìn)度條,php,ajax上傳進(jìn)度條" /> <meta name="description" content="這篇文章主要介紹了PHP+Ajax異步帶進(jìn)度條上傳文件實(shí)例代碼。" /> <!--默認(rèn)的進(jìn)度條樣式文件 添加一個(gè)帶有 class .progress 的 <div>。 接著,在上面的 <div> 內(nèi),添加一個(gè)帶有 class .progress-bar 的空的 <div>。 添加一個(gè)帶有百分比表示的寬度的 style 屬性,例如 ; 表示進(jìn)度條在 60% 的位置 --> <link rel="stylesheet" href="public/css/bootstrap.min.css" rel="external nofollow" > <script src="public/js/jquery.min.js"></script> <script src="public/js/jquery.form.js"></script> <!--ajaxForm 提交form表單數(shù)據(jù)無刷新處理數(shù)據(jù)--> </head> <body> <div class="uk-container uk-container-center"> <div class="pk-system-messages"></div> <h2 class="uk-h3 uk-text-center" >文件上傳</h2> <div class="pk-system-messages"></div> <div class="container-main"> <h2>文件上傳</h2> <p>這里只是一個(gè)ajax+php+ajaxForm上傳文件word文檔例子</p> <form id='myupload' action='upload.php' method='post' enctype='multipart/form-data'> <label for="file">選擇上傳文件名:</label> <input type="file" name="mypic" id="file"><br> <input type="submit" name="upload" class="btn btn-success" value="upload"> <input type='text' name="list" value="555"/> </form> <div class="progress"> <div class="progress-bar progress-bar-success progress-bar-striped" role="progressbar" aria-valuenow="45" aria-valuemin="0" aria-valuemax="100" > <span class="sr-only">10% Complete</span> </div> </div> <div class="files"></div> <div class="showimg"></div> </div> </div> </body> <script type="text/javascript"> $(function () { $("#myupload").ajaxForm({ dataType:'json', beforeSend:function(){ $(".progress").show(); }, uploadProgress:function(event,position,total,percentComplete){ var percentVal = percentComplete + '%'; $(".progress-bar").width(percentComplete + '%'); $(".progress-bar").html(percentVal); $(".sr-only").html(percentComplete + '%'); }, success:function(data){ $(".progress").hide(); if(data.error == "empty_name"){ alert("文件上傳非法,上傳失敗!"); exit(); }; if(data.error == "large"){ alert("圖片上傳不能大于2M,上傳失敗!"); exit(); }; if(data.error == "format"){ alert("圖片格式錯(cuò)誤,上傳失敗"); exit(); }; //$(".files").html("<b>"+data.name+"("+data.size+"k)</b> <span class='delimg' rel='"+data.pic+"'>刪除</span>"); $(".files").html("文件名: "+data.name+"<span class='delimg' rel='"+data.pic+"'> del </span>大小:"+data.size); var img = "files/"+data.pic; $(".showimg").html("<img src='"+img+"'>"); alert("上傳成功!"); }, error:function(){ alert("上傳失敗"); } }); $(".progress").hide(); }); </script> </html>
php上傳上傳類upload.class.php文件
<?php date_default_timezone_set("PRC"); //設(shè)置時(shí)間區(qū)域 //上傳類 class upload{ protected $file_path = "files"; //當(dāng)前files存儲(chǔ)文件夾 protected $file_size = 5120000; //5M 用戶上傳 /** *檢測文件是否為空 */ public function check_file($get_file) { if (empty($get_file)) { $type = "check_file"; $arr = array('error'=>'empty_name','type'=>$type); echo json_encode($arr); exit(); } return true; } /** *檢測文件類型 */ public function check_type($get_type) { if (( $get_type == ".docx" ) || ( $get_type == ".doc" )) { //這里只是判斷上傳word文檔可以自己添加 }else{ $type = "check_type"; $arr = array('error'=>'format','type'=>$type); echo json_encode($arr); exit(); } return true; } /** *檢測文件大小 */ public function check_size($get_file) { if ( $get_file != "" ) { if ( $get_file > $this->file_size ) { $arr = array('error'=>'large'); echo json_encode($arr); exit(); } }else{ return false; exit(); } return true; } /** *文件保存 */ public function save_file($file_type,$file_tmp_name) { $rand = rand(1000, 9999); $pics =date('YmdHis') . $rand . $file_type; $path = $this->file_path."/".$pics; $result = move_uploaded_file($file_tmp_name, $path); if($result){ return $pics; }else{ return false; exit(); } } } ?>
ajax提交php處理文件upload.php
<?php include("upload.class.php"); $up_obj = new upload(); //獲取上傳文件名 $get_fileName = $_FILES['mypic']['name']; $get_fileSize = $_FILES['mypic']['size']; $get_TmpFiles = $_FILES['mypic']['tmp_name']; $get_fileType = strstr($get_fileName, '.'); $check_result = $up_obj->check_file($get_fileName); if($check_result){ $result_type = $up_obj->check_type($get_fileType);//檢查文件類型 if($result_type){ $result_size = $up_obj->check_size($get_fileSize);//檢查文件大小 if($result_size){ $pics = $up_obj->save_file($get_fileType,$get_TmpFiles); //文件上傳保存 $size = round($get_fileSize/1024,2); $arr = array( 'name' => $get_fileName, 'pic' => $pics, 'size'=> $size, 'error' => 2, 'list' =>$_POST['list'] ); if($pics){ //檢查文件上傳狀態(tài) echo json_encode($arr); } } } } ?>
關(guān)于如何在PHP中利用AjaxForm實(shí)現(xiàn)一個(gè)文件上傳功能問題的解答就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,如果你還有很多疑惑沒有解開,可以關(guān)注億速云行業(yè)資訊頻道了解更多相關(guān)知識(shí)。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請(qǐng)聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。