springboot controller 使用 @RequestBody 接收对象参数时,ajax调用的正确写法如下:
$.ajax({
type: "post",
url: "http://xczx.gpmart.cn/gpapiBid/pub/listtodaybid?current=1&size=4",
data: "{}",//json对象为空时要写{} 不能空着,否则会出现400错误
dataType: "json",
contentType : 'application/json' //设置contentType 否则会出现415错误
});