- async function send(message){
- let response = await fetch("/bd.php?message=" + message);
- if (response.ok) { // если HTTP-статус в диапазоне 200-299
- // получаем тело ответа (см. про этот метод ниже)
- let json = await response.json();
- console.log( json);
- }
- }
|