aboutsummaryrefslogtreecommitdiffstats
path: root/static/main.js
blob: 8e8b87c50caccb6a2d2f822149214c48debacb29 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
async function post(url, data) {
    const params = {
        method: "POST",
        headers: {
            'Content-Type': 'application/json'
        },
        body: JSON.stringify(data),
    };

    let response = await fetch(url, params);
    if (!response.ok) {
        const text = await response.text();
        alert(`Error Sending: ${response.statusText} ${text}`);
    }
}