ajax上传数据到后台,后台接收为null?
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ajax上传数据到后台,后台接收为null?相关的知识,希望对你有一定的参考价值。
$.ajax(
url:'/product/product_add',
type:'POST',
dataType:'json',
contentType: 'application/x-www-form-urlencoded;charset=UTF-8',
traditional: true,
/*data:
"pname" : pname,
"image" : img,
"num" : num,
"Price" : Price,
"model" :model
,*/
//data:jsondata,
//data:Json.stringify(jsondata),
data:JSON.stringify(data.field),
timeout:2000,
async:true,
processData:false,
/*beforeSend:function (xhr)
xhr.setRequestHeader(header,token);
,*/
success:function(data)
layer.msg(data.msg);
/*if(data == 'success')
layer.msg("提交成功");
//location.href = "/user/loginpage"
else
layer.msg("提交失败")
*/
);
以上是关于ajax上传数据到后台,后台接收为null?的主要内容,如果未能解决你的问题,请参考以下文章
ajaxfileupload.js上传文件时后台用java怎么接收文件流
AJAX上传multipart/form-data类型参数时,后台无法接收的解决方案
ajax上传文件后,后台java如何接收(求后台接收的完整代码)