beginn frontend modularisierung
This commit is contained in:
+11
-10
@@ -1,22 +1,23 @@
|
||||
const API = "/resman/api";
|
||||
|
||||
async function api(url, options = {}) {
|
||||
const API="/resman/api";
|
||||
|
||||
async function api(url, options={}){
|
||||
|
||||
const res = await fetch(url, options);
|
||||
|
||||
if (!res.ok) {
|
||||
if(!res.ok){
|
||||
|
||||
let msg = "API error";
|
||||
let msg="API error";
|
||||
|
||||
try {
|
||||
const err = await res.json();
|
||||
msg = err.error || msg;
|
||||
} catch(e){}
|
||||
|
||||
alert("Fehler: " + msg);
|
||||
try{
|
||||
const err=await res.json();
|
||||
msg=err.error || msg;
|
||||
}catch(e){}
|
||||
|
||||
alert("Fehler: "+msg);
|
||||
throw new Error(msg);
|
||||
}
|
||||
|
||||
return res.json();
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user