我正在尝试使用jqgrid上传文件,但是我的代码中存在一些错误。 我正在使用 onInitializeForm 方法。 我正在使用Jquery Ajax File Uploader 有人可以帮我吗? 您可以在屏幕截图中看到错误
这是我的代码。
jQuery("#formGrid").jqGrid(
{
url:'application/ajax/common_form_detail.php?form_id='+form_id,
editurl:'application/ajax/common_form_edit.php?form_id='+form_id,
datatype: "json",
colNames:[<?php echo $strfield; ?>],
colModel:[<?php echo $strFieldModel; ?>],
rowNum:20,
rowList:[20,50,100],
pager: '#formControl',
sortname: 'id',
viewrecords: true,
sortorder: "asc",
autowidth: true,
height: 400,
width: 900
});
jQuery("#formGrid").jqGrid('navGrid','#formControl',
{ edit:true,add:true,del:true,search:false},
{width:780,recreateForm:true},
{width:780,recreateForm:true
,onInitializeForm : function(formid){
$(formid).attr('method','POST');
$(formid).attr('action','');
$(formid).attr('enctype','multipart/form-data');
}, afterSubmit : function(response, postdata){
$.ajaxFileUpload({
url: 'application/ajax/common_file_upload.php',
secureuri:false,
fileElementId:'STUDENT_AVATAR',
dataType: 'json',
success: function (data, status) {
alert("Upload Complete.");
}
});
}
});
});
答案 0 :(得分:1)
可以看到你在jQuery 1.5中折旧的jQuery.handleError
函数中有错误。从下载页面提供的jQuery Ajax File Uploader V2.1包含jQuery 1.2.1。
必须修复Ajax File Uploader的代码才能解决问题。例如,请参阅the answer和the answer或this one。您可以考虑使用其他插件进行文件上传,例如jQuery Form Plugin(和here),请参阅here。