/
ruslanf
/
chat-app
Обзор
Документация
Войти
/
ruslanf
/
chat-app
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/api.js
20 строк
551 B
Ruslan
find recipient
29 апр 2026, 15:58
29 апр 2026, 15:58
8066e72
Код
Авторство
О чём код?
export async function postRequest(to_method, data) { const response = await fetch( `/api/${to_method}`, { method: 'POST', body: data, credentials: 'include', headers: { 'Content-Type': 'application/json' } }) return response } export async function getRequest(to_method) { const response = await fetch( `/api/${to_method}`, { method: "GET", credentials: 'include', }) return response }