1
我需要發送POST請求給服務器沒有任何正文(登錄API)。我試圖做到這一點與Android和iOS獲取,但我得到的錯誤:「POST方法必須有一個請求體」
是否有任何選項來禁用它?我必須通過POST發送它,而不需要body。
我的代碼:
反應原生POST請求主體
fetch(url, { method: 'POST', headers: { 'Accept': 'application/json', 'Content-Type': 'application/json', }, }) .then((response) => response.text()) .then((responseText) => { console.log(responseText); }) .catch((error) => { console.warn(error); });
爲什麼你不能發送身上帶有空白字符,只是有服務器忽略它? –
你將如何發送用戶名等以便登錄? – greenapps