今天出了好多這個錯誤,Uncaught (in promise) AxiosError {message: ?Request failed with status code 400 , name: ?AxiosError , code: ?ERR_BAD_REQUEST , config: {…}, request: XMLHttpRequest, …}
反正就是前后端的參數不匹配,要不就是請求方式不匹配,比如前端請求的是post,但是后端用到putMapping
參數不匹配:
主要是改的前端,我這里后端基本是用的
@RequestParam Integer id
如果前端這樣
const res = await myAxios.post("/blog/delete", id);
就會報400
但是修改為
const res = await myAxios.post("/blog/delete", null,{params: {id}});
就可以了