您好,登錄后才能下訂單哦!
使用Jquery做上傳文件處理時(shí),用到了ajaxfileupload.js 這個(gè)第三方代碼,但是在使用過程中出現(xiàn)了一些問題,現(xiàn)在整理了一下,并加修改后的ajaxfileupload.js上傳,供大家參考。
問題一:
無法攜帶參數(shù),只能提交文件。
解決辦法:
找到文件中createUploadForm: function(id, fileElementId) 方法添加一個(gè)data參數(shù),并將data中的數(shù)據(jù)拼接進(jìn)去即可。代碼如下:
createUploadForm: function(id, fileElementId, data)
{
//create form
var formId = 'jUploadForm' + id;
var fileId = 'jUploadFile' + id;
var form = jQuery('<form action="" method="POST" name="' + formId + '" id="' + formId + '" enctype="multipart/form-data"></form>');
var oldElement = jQuery('#' + fileElementId);
var newElement = jQuery(oldElement).clone();
jQuery(oldElement).attr('id', fileId);
jQuery(oldElement).before(newElement);
jQuery(oldElement).appendTo(form);
if (data) {
for (var i in data) {
$('<input type="hidden" name="' + i + '" value="' + data[i] + '" />').appendTo(form);
}
}
然后找到調(diào)用createUploadForm方法的地方,修改入?yún)ⅲ?/span>
ajaxFileUpload: function(s) {
// TODO introduce global settings, allowing the client to modify them for all requests, not only timeout
s = jQuery.extend({}, jQuery.ajaxSettings, s);
var id = s.fileElementId;
var form = jQuery.createUploadForm(id, s.fileElementId, s.data);
var io = jQuery.createUploadIframe(id, s.secureuri);
var frameId = 'jUploadFrame' + id;
var formId = 'jUploadForm' + id;
現(xiàn)在參數(shù)問題就解決了,這個(gè)時(shí)候,你可以傳入你需要的參數(shù)。
問題二:
運(yùn)行時(shí)報(bào):jQuery.handleError is not a function 錯(cuò)誤;
解決辦法:
這個(gè)錯(cuò)誤是由于ajaxfileupload.js 是在jquery1.4.2版本之前寫的,Jquery之后的版本已經(jīng)沒有了handleError 方法,所以可以將1.4.2版本中的該方法復(fù)制到該js中。
// handleError 方法在jquery1.4.2之后移除了,此處重寫改方法
handleError: function( s, xhr, status, e ) {
// If a local callback was specified, fire it
if ( s.error ) {
s.error.call( s.context || s, xhr, status, e );
}
// Fire the global callback
if ( s.global ) {
(s.context ? jQuery(s.context) : jQuery.event).trigger( "ajaxError", [xhr, s, e] );
}
},
問題三:
執(zhí)行完成后,如果返回結(jié)果為json格式,則不斷報(bào)錯(cuò),這個(gè)問題是由于在處理返回的data的時(shí)候,對(duì)json格式的數(shù)據(jù)處理不當(dāng)導(dǎo)致,這個(gè)時(shí)候修改uploadHttpData方法即可:
uploadHttpData: function( r, type ) {
var data = !type;
data = type == "xml" || data ? r.responseXML : r.responseText;
// ifthe type is "script", eval it in global context
if( type == "script" )
{
jQuery.globalEval( data );
}
// Get the JavaScript object, ifJSON is used.
if( type == "json" )
{
data = jQuery.parseJSON(jQuery(data).text());
// eval( "data = " + data );
}
// evaluate scripts within html
if( type == "html" )
{
jQuery("<div>").html(data).evalScripts();
}
return data;
}
現(xiàn)在可以實(shí)現(xiàn)異步上傳圖片了。
我的js代碼:
$("#p_w_picpathInput").change(function(){
var filename = $("#p_w_picpathInput").val();
if(!/\.(gif|jpg|jpeg|png|GIF|JPG|PNG)$/.test(filename)){
alert("You must select a valid p_w_picpath file!");
return false;
}
$.ajaxFileUpload({
url: '/web/account!modifyLogoimg.action',
secureuri: false,
fileElementId: 'p_w_picpathInput',
dataType: 'json',
data : {"filename": filename},
success: function(data) {
if(data.success){
$("#personal_img").attr("src", "/"+data.picpath);
$("#filename_hide").val(data.picpath);
}else{
alert(data.message);
}
},
error: function(data, status, e) {
alert(e);
}
});
});
html片段:
<form action="" method="post" enctype="multipart/form-data" id="p_w_picpath_form" >
<dl>
<dt>The current p_w_picpath:</dt>
<dd id="p_w_picpathPreview">
<img id="personal_img" src="" />
<input type="hidden" value="" name="filename" id="filename_hide">
</dd>
</dl>
<dl>
<dt>New p_w_picpath:</dt>
<dd><a href="javascript:void(0);"><input type="file" name="picture" id="p_w_picpathInput" /></a></dd>
</dl>
</form>
附件是修改以后的ajaxfileupload.js文件。供大家參考。
免責(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)容。