我将连同文件一起发送额外的表单数据。这是表单数据:
register_object['first_name']=$("#first_name").val();
register_object['last_name']=$("#last_name").val();
register_object['input_email']=$("#input_email").val();
register_object['input_password']=$("#input_password").val();
register_object['repeat_password']=$("#repeat_password").val();
而且,以下是我使用的上传代码:
$(document).ready(function(){
$("#image_file").uploadify({
'method' : 'post',
'queueSizeLimit' : 1,
'formData' : JSON.stringify(register_object),
'buttonText' : 'Profile Pic',
'auto' : false,
'multi' : false,
'swf' : 'js/plugins/others/uploadify.swf',
'uploader' : 'upload.ashx',
'fileTypeDesc': 'Image Files',
'fileTypeExts': '*.jpg;*.png;*.gif;*.bmp;*.jpeg',
'onUploadStart' : function(file) {
$('#file_upload').uploadify('settings', 'formData', JSON.stringify(register_object));
alert(JSON.stringify(register_object));
},
'onUploadSuccess' : function(file,data) {
alert('The file finished processing. ' + data);
},
'onUploadError' : function(file, errorCode, errorMsg, errorString) {
alert('The file ' + file.name + ' could not be uploaded: ' + errorString + ' ' + errorMsg);
}
});
$("#register").submit(function(){
$('#input_password').val(CryptoJS.MD5($('#input_password').val()));
$('#repeat_password').val(CryptoJS.MD5($('#repeat_password').val()));
register_object['first_name']=$("#first_name").val();
register_object['last_name']=$("#last_name").val();
register_object['input_email']=$("#input_email").val();
register_object['input_password']=$("#input_password").val();
register_object['repeat_password']=$("#repeat_password").val();
$("#image_file").uploadify('upload');
return false;
});
});
当我访问服务器上的帖子数据时,我什么也得不到。
我究竟做错了什么?