其他分享
首页 > 其他分享> > 前端发送请求到后端报400错误问题

前端发送请求到后端报400错误问题

作者:互联网

目录

错误信息

xhr.js:178 DELETE http://127.0.0.1:8081/deleteSpuInfoById?spuId=85 400
createError.js:16 Uncaught (in promise) Error: Request failed with status code 400

错误原因

// 根据spuId删除Spu
  deleteSpuInfoById(spuId) {
    debugger
    return request({
      url: 'deleteSpuInfoById?spuId=' + spuId,
      method: 'delete'
    })
  },
@DeleteMapping("deleteSpuInfoById")
public Result deleteSpuInfoById(@RequestBody String spuId){
	//省略....
}

总结

  1. 前端发送的属性名和后端实体类的属性名不对应
  1. 前端发送的属性名和后端实体类的属性名都对应

标签:实体类,spuId,端报,发送,400,前端,属性
来源: https://blog.csdn.net/weixin_40460171/article/details/111088605