我正在尝试使用 axios 来更新数据,并且我想在请求网址中使用“id”,例如 http://localhost/api/firstmemory/1
但返回 500 Internal Server Error,因为我的 id 无法正确读取。
我的代码
const id = detail.id;
const updateFirstInfo = (e) => {
const upInfo = {
first: first,
date: change,
memo: memo,
}
console.log(id); //1
axios
.put(`api/firstmemory/${id}}`, upInfo)
.then(res => {
console.log("ok");
})
.catch(err => {
alert("err");
});
};
我该如何修复它?
www说
相关分类