const data = {title: 'title', body: 'body'};
const url = 'https://example.com/profile';
try {
const response = await fetch(url, {
method: 'POST',
body: JSON.stringify(data), // данные могут быть 'строкой' или {объектом}!
headers: {
'Content-Type': 'application/json'
}
});
const json = await response.json();
console.log('Успех:', JSON.stringify(json));
} catch (error) {
console.error('Ошибка:', error);
}