Answer the question
In order to leave comments, you need to log in
Answer the question
In order to leave comments, you need to log in
const url = 'https://example.com/profile';
const data = { username: 'example' };
try {
const response = await fetch(url, {
method: 'POST', // или 'PUT'
body: JSON.stringify(data), // данные могут быть 'строкой' или {объектом}!
headers: {
'Content-Type': 'application/json'
}
});
const json = await response.json();
console.log('Успех:', JSON.stringify(json));
} catch (error) {
console.error('Ошибка:', error);
}
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question