Maison > Questions et réponses > le corps du texte
P粉4587250402023-08-21 10:51:25
Je pense que votre problème est jsfiddle
只能处理form-urlencoded
请求。但是正确的方法是将正确的json
passer comme corps de requête :
fetch('https://httpbin.org/post', { method: 'POST', headers: { 'Accept': 'application/json, text/plain, */*', 'Content-Type': 'application/json' }, body: JSON.stringify({a: 7, str: 'Some string: &=&'}) }).then(res => res.json()) .then(res => console.log(res));
P粉8199374862023-08-21 10:15:17
Comment utiliser les async/await
支持,这是如何进行POST
données JSON d'ES2017 :
(async () => { const rawResponse = await fetch('https://httpbin.org/post', { method: 'POST', headers: { 'Accept': 'application/json', 'Content-Type': 'application/json' }, body: JSON.stringify({a: 1, b: 'Textual content'}) }); const content = await rawResponse.json(); console.log(content); })();