+ 2
[DONE] Convert Python request code to JavaScript XMLhttp request
I need help to convert this Python3 code into javascript code. import requests url = 'https://myurl.com/api.php' data = { 'data': 'a', 'type': 'message', 'sent': 'true' } r = requests.post(url, data = data) print(r.json()) Thank you.
1 Resposta
+ 5
The JavaScript code would look like,
let url = 'https://myurl.com/api.php'
let data = {
data: 'a',
type: 'message',
sent: 'true'
};
fetch(url, {
method: "POST",
body: JSON.stringify(data),
headers: { "Content-Type": "application/json"
})
.then(res => res.json())
.then(resp => {
console.log(resp);
});