我正在嘗試使用 axios 來更新數(shù)據(jù),并且我想在請求網(wǎng)址中使用“id”,例如 http://localhost/api/firstmemory/1但返回 500 Internal Server Error,因?yàn)槲业?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"); }); };我該如何修復(fù)它?
無法正確讀取http請求
ITMISS
2023-09-14 18:08:42