Ajax请求设置Type为Form-Data
在你Ajax请求中加上
headers : {
'Content-Type' : 'application/x-www-form-urlencoded'
},
示例:
$.ajax({
type : "POST",
url : "../user/repwd",
headers : {
'Content-Type' : 'application/x-www-form-urlencoded'
},
data : data,
dataType : "json",
});