您好,登錄后才能下訂單哦!
這篇文章將為大家詳細(xì)講解有關(guān)怎么在php中使用ajax實現(xiàn)文件上傳功能,文章內(nèi)容質(zhì)量較高,因此小編分享給大家做個參考,希望大家閱讀完這篇文章后對相關(guān)知識有一定的了解。
html 代碼
<form action="{pboot:form fcode=8}" method="post" id="t" enctype="multipart/form-data"> <input type="file" name='tables_a' id="tables" onchange="abs()"> <input type="hidden" name='tables' id='tables_2'> <input type="submit" value="提交"> </form>
項目使用的是pbootCMS 所以地址可忽略
enctype="multipart/form-data"因為設(shè)計到文件上傳必須在from 表單中添加該屬性
js代碼
function abs(){ var fileArray = document.getElementById('tables').files[0]; var formData = new FormData(); formData.append("fileArray", fileArray) $.ajax({ url: "{pboot:httpurl}/api.php/Tables/index",//傳向后臺服務(wù)器文件 type: 'POST', //傳遞方法 data: formData, //傳遞的數(shù)據(jù) dataType : 'json', //傳遞數(shù)據(jù)的格式 async:false, //這是重要的一步,防止重復(fù)提交的 cache: false, //設(shè)置為false,上傳文件不需要緩存。 contentType: false,//設(shè)置為false,因為是構(gòu)造的FormData對象,所以這里設(shè)置為false。 processData: false,//設(shè)置為false,因為data值是FormData對象,不需要對數(shù)據(jù)做處理。 success: function (responseStr){ if(responseStr.code != 0){ alert('上傳成功'); $('#tables_2').val('{pboot:httpurl}'+responseStr.data); }else{ alert('上傳失敗'); } }, error: function () { alert("上傳錯誤!"); } }); }
PHP代碼
public function index() { $name = $_FILES['fileArray']['name']; $last = substr($name,strrpos($name,'.')); $name = date('YmdHis').rand(10000,99999).$last; $address = ROOT_PATH.'/upload/'.$name; if(move_uploaded_file($_FILES['fileArray']['tmp_name'],$address)){ return json(1,'/upload/'.$name); }else{ return json(0); } }
關(guān)于怎么在php中使用ajax實現(xiàn)文件上傳功能就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,可以學(xué)到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。