Skip to content
  • Home
  • Recent
  • Tags
  • 0 Unread 0
  • Categories
  • Unreplied
  • Popular
  • GitHub
  • Docu
  • Hilfe
Skins
  • Light
  • Brite
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
ioBroker Logo

Community Forum

donate donate
  1. ioBroker Community Home
  2. Deutsch
  3. Skripten / Logik
  4. JavaScript
  5. JavaScript - http request Fehler abfangen

NEWS

  • Monatsrückblick Januar/Februar 2026 ist online!
    BluefoxB
    Bluefox
    18
    1
    770

  • Jahresrückblick 2025 – unser neuer Blogbeitrag ist online! ✨
    BluefoxB
    Bluefox
    18
    1
    6.2k

  • Neuer Blogbeitrag: Monatsrückblick - Dezember 2025 🎄
    BluefoxB
    Bluefox
    13
    1
    1.5k

JavaScript - http request Fehler abfangen

Scheduled Pinned Locked Moved JavaScript
javascript
3 Posts 2 Posters 600 Views 2 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • T Offline
    T Offline
    tp1de
    wrote on last edited by
    #1

    Hallo ich bräuchte mal Eure Hilfe:

    Ich frage per hhtp-request einzelne Werte eines Servers ab. Funktioniert auch meistens.
    (In einer async function mit await). Dabei bekomme ich aber ETIMEDOUT Fehler zurück. Diese fange ich ab und versuche es nochmal. Dann noch ein drittes Mal. Da parallel (asynchron) aber andere requests laufen, macht der Server dann ab und zu zu, d.h. antwortet mit ETIMEDOUT. Das ist nicht ideal und nicht zu 100% die Lösung.

    Wer kann mir helfen, wie ich das richtig mache? (Eine Liste von hhtp-requests abarbeiten und Fehler abfangen).

    1 Reply Last reply
    0
    • H Offline
      H Offline
      homecineplexx
      wrote on last edited by
      #2

      poste mal den script-teil, dann kann man dir vielleicht leichter helfen

      1 Reply Last reply
      0
      • T Offline
        T Offline
        tp1de
        wrote on last edited by tp1de
        #3

        hier der Script-Teil

        // im array list stehen die Abfrage-Werte ....
        
        async function main(list) {
        	let i = 0;
        	for (i = 0; i < list.length; i++)  { 
        		if (list[i] !== '') {
        			const url  = ipadress +  '/'+list[i]) ;
        			try {   
        				const body = await get(url);
                                        ........
        
        			}   
        			catch(error) 
        			{
        				try {   
        					const body = await get(url);
                                                 ......
        				}   
        				catch(error) 
        				{ 
        					try {   
        						const body = await get(url);
                                                        ......
        					}  
        					catch(error){
        						console.log('http Fehler: ' + url + ' ---> ' + error);
        					}
        				}    
        			}			
        		}
        	}	
        }
        
        function get(url) {
        	return new Promise(function(resolve,reject) {
        		const options = 
        		{
        			url: url, 
        			method: 'GET', 
        			timeout: 5000
        		};
        		
        		request(options, function(error,response,body) 
        		{if (error) return reject(error); resolve(body);}); 
        	});
        }
        
        
        
        1 Reply Last reply
        -1

        Hello! It looks like you're interested in this conversation, but you don't have an account yet.

        Getting fed up of having to scroll through the same posts each visit? When you register for an account, you'll always come back to exactly where you were before, and choose to be notified of new replies (either via email, or push notification). You'll also be able to save bookmarks and upvote posts to show your appreciation to other community members.

        With your input, this post could be even better 💗

        Register Login
        Reply
        • Reply as topic
        Log in to reply
        • Oldest to Newest
        • Newest to Oldest
        • Most Votes


        Support us

        ioBroker
        Community Adapters
        Donate

        593

        Online

        32.8k

        Users

        82.7k

        Topics

        1.3m

        Posts
        Community
        Impressum | Datenschutz-Bestimmungen | Nutzungsbedingungen | Einwilligungseinstellungen
        ioBroker Community 2014-2025
        logo
        • Login

        • Don't have an account? Register

        • Login or register to search.
        • First post
          Last post
        0
        • Home
        • Recent
        • Tags
        • Unread 0
        • Categories
        • Unreplied
        • Popular
        • GitHub
        • Docu
        • Hilfe