傳參數,后台@RequestBody接收實體,報錯:Content type 'application/x-www-form-urlencoded;charset=UTF-8' not supported
解決方案:添加紅字處的內容,既可以解決問題
$.ajax({
type : "post",
url : submiturl,
data : JSON.stringify(formData),
contentType:"application/json",
dataType : "json",
success : function(data) {
if(data.status){
$.messager.alert("系統提示","提交成功!");
$('#addDialog').dialog('close');
doSearch();
}else{
$.messager.alert("系統提示","提交失敗!","error");
}
}
});
