Überprüfen Sie, ob in LocalStorage Daten vorhanden sind
if (localStorage.getItem('ID') !== null) {
console.log(` exists`);
} else {
console.log(`not found`);
}
Dentetsu