34 lines
789 B
JavaScript
34 lines
789 B
JavaScript
export function fetchData(key, data = {}, method = 'GET') {
|
|
const url = new URL(`${window.location.origin}/api/${key}`)
|
|
|
|
Object.keys(data).forEach(key => {
|
|
url.searchParams.append(key, data[key])
|
|
})
|
|
|
|
return fetch(url.href, { method })
|
|
.then(response => response.json())
|
|
.catch(() => {})
|
|
}
|
|
|
|
export function sendToServer(key, data) {
|
|
const url = new URL(`${window.location.origin}/api/${key}`)
|
|
|
|
Object.keys(data).forEach(key => {
|
|
url.searchParams.append(key, data[key])
|
|
})
|
|
|
|
fetch(url.href).catch(console.error)
|
|
}
|
|
|
|
export const postToServer = (endpoint, data) => {
|
|
const url = new URL(`${window.location.origin}/api/${endpoint}`)
|
|
|
|
fetch(url, {
|
|
body: JSON.stringify(data),
|
|
headers: {
|
|
'Content-Type': 'application/json'
|
|
},
|
|
method: 'POST'
|
|
}).catch(console.error)
|
|
}
|