16 lines
507 B
JavaScript
16 lines
507 B
JavaScript
// /services/database/fetchDeviceNameById.js
|
|
export const fetchDeviceNameById = async (idLD) => {
|
|
try {
|
|
const response = await fetch(`/api/talas_v5_DB/locationDevice/locationDeviceNameById?idLD=${idLD}`);
|
|
const data = await response.json();
|
|
if (response.ok) {
|
|
return data.name;
|
|
} else {
|
|
throw new Error("Gerät nicht gefunden");
|
|
}
|
|
} catch (error) {
|
|
console.error("Fehler beim Abrufen des Gerätenamens in fetchDeviceNameById:", error);
|
|
return "Unbekannt";
|
|
}
|
|
};
|