分別"/> 分別">
function newPlayer(newForm) { fetch("http://localhost:3000/Players", { method: "POST", headers: { 'Content-Type': 'application/json' }, body:JSON.stringify(newForm) }) .then(resp => resp.json()) // .then(player => console.log(player)) .then(player => showPlayer(player)) } function showPlayer (player) { console.log(player)``
我常常提醒自己,並不是所有的資訊都需要重構。我目前參加了一個訓練營,知道吸收大量資訊是多麼困難,也知道管理時間以防止不知所措是多麼困難。我希望本指南可以幫助您更好地理解 POST 請求,並且簡單明了,感謝您的閱讀!
以上是了解 Javascript 中的 POST 請求的詳細內容。更多資訊請關注PHP中文網其他相關文章!