其他分享
首页 > 其他分享> > ajax 调用springboot controller时出现400、415问题解决方式

ajax 调用springboot controller时出现400、415问题解决方式

作者:互联网

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错误
});

标签:contentType,springboot,json,controller,415,ajax,400
来源: https://www.cnblogs.com/donghuimao/p/14972604.html