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. Hilfe für Javascript Legastheniker und js v8.3.x

NEWS

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

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

  • Weihnachtsangebot 2025! 🎄
    BluefoxB
    Bluefox
    25
    1
    2.2k

Hilfe für Javascript Legastheniker und js v8.3.x

Scheduled Pinned Locked Moved JavaScript
104 Posts 8 Posters 13.3k Views 7 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.
  • HomoranH Homoran

    @ofbeqnpolkkl6mby5e13 ja, ich will es auch versuchen zu können, wenigstens nachvollziehen.

    mir scheint, bei denen wo es nicht klappt ist jedesmal die Funktion readJson (url, function(err, response)) mit beteiligt, wobei der url identisch zu dem httpGet url ist.

    das finde ich bei dir jedoch nicht

    O Offline
    O Offline
    oFbEQnpoLKKl6mbY5e13
    wrote on last edited by
    #59

    @homoran

    In dem Skript mit request gab es den Parameter url. Den habe ich entfernt, weil er für httpGet nicht benötigt wird. Die Abfrage der Daten funktioniert ja auch. Keine Ahnung...

    1 Reply Last reply
    0
    • O oFbEQnpoLKKl6mbY5e13

      @tt-tom

      Inzwischen ja. Leider wird weiterhin keine Objektstruktur angelegt. Hier der aktuelle Stand:

      const city_id = XXXXX;
      const area_id = XXX;
      const logging = false;
      const name = 'Müllabfuhr';
      const numberOfEntries = 69;
      
      const instanz = '0_userdata.' + instance + '.muell-test';
      
      if (logging) log('starting muell.' + instanz);
      
      extendObject(instanz, {
             type: "device",
             common: {
                 name: name
             }
         }, function (err) {
             if (err) {
                 log('could not create device: ', 'warn');
                 return;
             }
         
         }
      );
      let baseData = {};
      
      // query names first
      httpGet('https://mymuell.jumomind.com/mmapp/api.php?r=trash&city_id=' + city_id + '&area_id=' + area_id, { timeout: 2000 }, (error, response) => {
         if (!error && response.statusCode == 200) {
             console.log(response.statusCode);
             console.log(response.data);
         } else {
             console.error(error);
         var data = JSON.parse(response.data);  // info ist ein Objekt
                 data.forEach((v, i) => {
                     baseData[v._name] = v;
                 })
         updateMuell();	
         }
      });
      
      schedule('{"time":{"exactTime":true,"start":"12:17"},"period":{"days":1}}', updateMuell);
      
      function updateMuell() {
         var options = 'https://mymuell.jumomind.com/webservice.php?idx=termins&city_id=' + city_id + '&area_id=' + area_id + '&ws=3'
      
         httpGet(options), (error, response)
             if (!error && response.statusCode == 200) 
                 var info = JSON.parse(response.data);  // info ist ein Objekt
                 if (info[0].Ack === 'Success') {
                     var data = info[0]._data;  // xy ist eine Eigenschaft des Objektes info
                     let counter = 0;
                     const date = (new Date())
                     const todayStr = date.getFullYear() + "-" + ('00' + (date.getMonth() + 1 )).slice(-2) + "-" + ('00' + date.getDate()).slice(-2)
                     log(todayStr);
                     data.forEach((v, i) => {
                         if (todayStr < v.cal_date && counter <= numberOfEntries) {
                             
                             const basePath = instanz + '.' + ('000' + counter).slice(-3);
                             log(v.cal_date + ' -> ' + basePath, 'debug');
                             // States erstellen
                             extendObject(basePath, {
                                     type: "channel",
                                     common: {
                                         name: v.cal_date_normal
                                     }
                                 }, function (err) {
                                     if (err) {
                                         log('could not create device: ', 'warn');
                                         return;
                                     }
                                 
                                 }
                             );
                             createState(basePath + '.date', v.cal_date_normal, {
                                 name: 'Datum',
                                 desc: 'Datum der Abholung',
                                 type: 'string',
                                 read: true,
                                 write: false
                             }, () => {
                                 setState(basePath + '.date', v.cal_date_normal, true);
                             });
                             
                             createState(basePath + '.desc', baseData[v.cal_garbage_type].title, {
                                 name: 'Beschreibung',
                                 desc: 'Beschreibung der Abholung',
                                 type: 'string',
                                 read: true,
                                 write: false
                             }, () => {
                                 setState(basePath + '.desc', baseData[v.cal_garbage_type].title, true);
                             });
                             createState(basePath + '.color', {
                                 name: 'Farbe',
                                 desc: 'Farbe',
                                 type: 'string',
                                 role: 'level.color',
                                 read: true,
                                 write: false
                             }, () => {
                                 setState(basePath + '.color', baseData[v.cal_garbage_type].color, true);
                             });
      
                             counter++;
                         }
                     });
                 }
             };
         
      

      HomoranH Do not disturb
      HomoranH Do not disturb
      Homoran
      Global Moderator Administrators
      wrote on last edited by Homoran
      #60

      @ofbeqnpolkkl6mby5e13 sagte in Hilfe für Javascript Legastheniker und js v8.3.x:

      httpGet(options), (error, response)

      oooh, da hatte ich mein Beispiel zu stark vereinfacht.
      Ich glaube nicht, dass da wörtlich options stehen darf. Da muss je nach Anwendung eine Option, z.B. der url mit timeout usw. rein

      EDIT: DU hast options als variable deklariert!
      alles gut

      kein Support per PN! - Fragen im Forum stellen - es gibt fast nichts, was nicht auch für andere interessant ist.

      Benutzt das Voting rechts unten im Beitrag wenn er euch geholfen hat.

      der Installationsfixer: curl -fsL https://iobroker.net/fix.sh | bash -

      O 1 Reply Last reply
      0
      • HomoranH Homoran

        @ofbeqnpolkkl6mby5e13 sagte in Hilfe für Javascript Legastheniker und js v8.3.x:

        httpGet(options), (error, response)

        oooh, da hatte ich mein Beispiel zu stark vereinfacht.
        Ich glaube nicht, dass da wörtlich options stehen darf. Da muss je nach Anwendung eine Option, z.B. der url mit timeout usw. rein

        EDIT: DU hast options als variable deklariert!
        alles gut

        O Offline
        O Offline
        oFbEQnpoLKKl6mbY5e13
        wrote on last edited by oFbEQnpoLKKl6mbY5e13
        #61

        @homoran

        Richtig, options hat der Entwickler als Variable deklariert.

        HomoranH 1 Reply Last reply
        0
        • O oFbEQnpoLKKl6mbY5e13

          @homoran

          Richtig, options hat der Entwickler als Variable deklariert.

          HomoranH Do not disturb
          HomoranH Do not disturb
          Homoran
          Global Moderator Administrators
          wrote on last edited by
          #62

          @ofbeqnpolkkl6mby5e13 sagte in Hilfe für Javascript Legastheniker und js v8.3.x:

          @homoran

          Richtig, options hat der Entwickler als Variable deklariert.

          damit hast du 2x httpGet
          einmal mit direkter Eingabe des url in Zeile 27, mit Ausgabe des response in Zeile 30, und einmal in Zeile 46 mit dem url in der Variable options
          Da wäre es doch interessant

          @tt-tom sagte in Hilfe für Javascript Legastheniker und js v8.3.x:

          Setze das mal in Zeile 48 mit rein, damit du sehen kannst was da kommt.

          ob es da auch ankommt

          kein Support per PN! - Fragen im Forum stellen - es gibt fast nichts, was nicht auch für andere interessant ist.

          Benutzt das Voting rechts unten im Beitrag wenn er euch geholfen hat.

          der Installationsfixer: curl -fsL https://iobroker.net/fix.sh | bash -

          O 1 Reply Last reply
          0
          • HomoranH Homoran

            @ofbeqnpolkkl6mby5e13 sagte in Hilfe für Javascript Legastheniker und js v8.3.x:

            @homoran

            Richtig, options hat der Entwickler als Variable deklariert.

            damit hast du 2x httpGet
            einmal mit direkter Eingabe des url in Zeile 27, mit Ausgabe des response in Zeile 30, und einmal in Zeile 46 mit dem url in der Variable options
            Da wäre es doch interessant

            @tt-tom sagte in Hilfe für Javascript Legastheniker und js v8.3.x:

            Setze das mal in Zeile 48 mit rein, damit du sehen kannst was da kommt.

            ob es da auch ankommt

            O Offline
            O Offline
            oFbEQnpoLKKl6mbY5e13
            wrote on last edited by oFbEQnpoLKKl6mbY5e13
            #63

            @homoran

            Die Funktion updateMuell (Zeile 43) wird nur ausgeführt wenn "schedule('{"time":{"exactTime":true,"start":"12:17"},"period":{"days":1}}'".

            Beim ersten Start muss trotzdem aktualisiert bzw. die Objektstruktur erstellt werden.

            Edit:
            Nee, stimmt nicht. Die wird auch beim Starten ausgeführt.

            HomoranH 1 Reply Last reply
            0
            • O oFbEQnpoLKKl6mbY5e13

              @homoran

              Die Funktion updateMuell (Zeile 43) wird nur ausgeführt wenn "schedule('{"time":{"exactTime":true,"start":"12:17"},"period":{"days":1}}'".

              Beim ersten Start muss trotzdem aktualisiert bzw. die Objektstruktur erstellt werden.

              Edit:
              Nee, stimmt nicht. Die wird auch beim Starten ausgeführt.

              HomoranH Do not disturb
              HomoranH Do not disturb
              Homoran
              Global Moderator Administrators
              wrote on last edited by Homoran
              #64

              @ofbeqnpolkkl6mby5e13 sagte in Hilfe für Javascript Legastheniker und js v8.3.x:

              Edit

              danke! ich wollte gerade für heute Schluss machen weil ich keine andere Stelle mehr fand ;-)

              also mal per log prüfen ob options klappt

              kein Support per PN! - Fragen im Forum stellen - es gibt fast nichts, was nicht auch für andere interessant ist.

              Benutzt das Voting rechts unten im Beitrag wenn er euch geholfen hat.

              der Installationsfixer: curl -fsL https://iobroker.net/fix.sh | bash -

              O 1 Reply Last reply
              0
              • HomoranH Homoran

                @ofbeqnpolkkl6mby5e13 sagte in Hilfe für Javascript Legastheniker und js v8.3.x:

                Edit

                danke! ich wollte gerade für heute Schluss machen weil ich keine andere Stelle mehr fand ;-)

                also mal per log prüfen ob options klappt

                O Offline
                O Offline
                oFbEQnpoLKKl6mbY5e13
                wrote on last edited by
                #65

                @homoran

                httpGet(options), (error, response)
                    console.log(response.statusCode);
                    console.log(response.data);
                

                Wird nichts ausgegeben.

                HomoranH paul53P 2 Replies Last reply
                0
                • O oFbEQnpoLKKl6mbY5e13

                  @homoran

                  httpGet(options), (error, response)
                      console.log(response.statusCode);
                      console.log(response.data);
                  

                  Wird nichts ausgegeben.

                  HomoranH Do not disturb
                  HomoranH Do not disturb
                  Homoran
                  Global Moderator Administrators
                  wrote on last edited by
                  #66

                  @ofbeqnpolkkl6mby5e13 sagte in Hilfe für Javascript Legastheniker und js v8.3.x:

                  @homoran

                  httpGet(options), (error, response)
                      console.log(response.statusCode);
                      console.log(response.data);
                  

                  Wird nichts ausgegeben.

                  dann wird auch nichts angelegt.

                  Nur warum?
                  ist options nicht korrekt zusammengebaut?

                  console.log(options) sagt das gleiche was in Zeile 27 steht?

                  kein Support per PN! - Fragen im Forum stellen - es gibt fast nichts, was nicht auch für andere interessant ist.

                  Benutzt das Voting rechts unten im Beitrag wenn er euch geholfen hat.

                  der Installationsfixer: curl -fsL https://iobroker.net/fix.sh | bash -

                  O 1 Reply Last reply
                  0
                  • HomoranH Homoran

                    @ofbeqnpolkkl6mby5e13 sagte in Hilfe für Javascript Legastheniker und js v8.3.x:

                    @homoran

                    httpGet(options), (error, response)
                        console.log(response.statusCode);
                        console.log(response.data);
                    

                    Wird nichts ausgegeben.

                    dann wird auch nichts angelegt.

                    Nur warum?
                    ist options nicht korrekt zusammengebaut?

                    console.log(options) sagt das gleiche was in Zeile 27 steht?

                    O Offline
                    O Offline
                    oFbEQnpoLKKl6mbY5e13
                    wrote on last edited by
                    #67

                    @homoran

                    Wenn ich das mache:

                    httpGet(options), (error, response)
                        console.log(response.statusCode);
                        console.log(response.data);
                        console.log("test");
                    

                    Wird "test" nicht ausgegeben. Das Skript ruft also die Funktion gar nicht auf.

                    HomoranH 1 Reply Last reply
                    0
                    • O oFbEQnpoLKKl6mbY5e13

                      @homoran

                      Wenn ich das mache:

                      httpGet(options), (error, response)
                          console.log(response.statusCode);
                          console.log(response.data);
                          console.log("test");
                      

                      Wird "test" nicht ausgegeben. Das Skript ruft also die Funktion gar nicht auf.

                      HomoranH Do not disturb
                      HomoranH Do not disturb
                      Homoran
                      Global Moderator Administrators
                      wrote on last edited by
                      #68

                      @ofbeqnpolkkl6mby5e13
                      Sorry, dann mach ich doch Schluss für heute.
                      mir raucht der Kopf. Das hemmt die Kreativität

                      Mal sehen was abdere bis morgen rausfinden

                      kein Support per PN! - Fragen im Forum stellen - es gibt fast nichts, was nicht auch für andere interessant ist.

                      Benutzt das Voting rechts unten im Beitrag wenn er euch geholfen hat.

                      der Installationsfixer: curl -fsL https://iobroker.net/fix.sh | bash -

                      1 Reply Last reply
                      1
                      • O oFbEQnpoLKKl6mbY5e13

                        @homoran

                        httpGet(options), (error, response)
                            console.log(response.statusCode);
                            console.log(response.data);
                        

                        Wird nichts ausgegeben.

                        paul53P Offline
                        paul53P Offline
                        paul53
                        wrote on last edited by
                        #69

                        @ofbeqnpolkkl6mby5e13 sagte: Wird nichts ausgegeben.

                        Es fehlt auch was.

                        httpGet(options, (error, response) => {
                        

                        Bitte verzichtet auf Chat-Nachrichten, denn die Handhabung ist grauenhaft !
                        Produktiv: RPi 2 mit S.USV, HM-MOD-RPI und SLC-USB-Stick mit root fs

                        O 1 Reply Last reply
                        0
                        • paul53P paul53

                          @ofbeqnpolkkl6mby5e13 sagte: Wird nichts ausgegeben.

                          Es fehlt auch was.

                          httpGet(options, (error, response) => {
                          
                          O Offline
                          O Offline
                          oFbEQnpoLKKl6mbY5e13
                          wrote on last edited by oFbEQnpoLKKl6mbY5e13
                          #70

                          @paul53

                          Danke!

                          2024-05-26 22:19:52.596  - info: javascript.0 (3416) Start JavaScript script.js.common._Tests.Test_17 (JavaScript/js)
                          2024-05-26 22:19:52.597  - error: javascript.0 (3416) script.js.common._Tests.Test_17 compile failed:
                          at script.js.common._Tests.Test_17:118
                          2024-05-26 22:19:52.598  - error: javascript.0 (3416) })();
                          2024-05-26 22:19:52.598  - error: javascript.0 (3416)  ^
                          2024-05-26 22:19:52.598  - error: javascript.0 (3416) SyntaxError: Unexpected token ')'
                          2024-05-26 22:19:52.598  - error: javascript.0 (3416)     at new Script (node:vm:99:7)
                          2024-05-26 22:19:52.598  - error: javascript.0 (3416)     at createVM (/opt/iobroker/node_modules/iobroker.javascript/main.js:1917:21)
                          2024-05-26 22:19:52.599  - error: javascript.0 (3416)     at prepareScript (/opt/iobroker/node_modules/iobroker.javascript/main.js:2183:37)
                          2024-05-26 22:19:52.599  - error: javascript.0 (3416)     at /opt/iobroker/node_modules/iobroker.javascript/main.js:2281:17
                          2024-05-26 22:19:52.599  - error: javascript.0 (3416)     at Immediate._onImmediate (/opt/iobroker/node_modules/iobroker.javascript/main.js:1703:17)
                          2024-05-26 22:19:52.599  - error: javascript.0 (3416)     at process.processImmediate (node:internal/timers:478:21)
                          2024-05-26 22:19:55.316  - info: javascript.0 (3416) Stopping script script.js.common._Tests.Test_17
                          
                          

                          An welcher Stelle ist die Klammer zu viel?

                          paul53P 1 Reply Last reply
                          0
                          • HomoranH Homoran

                            @tt-tom sagte in Hilfe für Javascript Legastheniker und js v8.3.x:

                            dass bei einem Fehler keine Auswertung gemacht wird.

                            aber das log wird trotzdem zugemüllt.
                            Allerdings dann (hoffentlich) nur noch mit timeout of x msec exceeded und nicht mehr die ganzen null Meldungen

                            paul53P Offline
                            paul53P Offline
                            paul53
                            wrote on last edited by
                            #71

                            @homoran sagte: nur noch mit timeout of x msec exceeded und nicht mehr die ganzen null Meldungen

                            Blockly_temp.JPG

                            Bitte verzichtet auf Chat-Nachrichten, denn die Handhabung ist grauenhaft !
                            Produktiv: RPi 2 mit S.USV, HM-MOD-RPI und SLC-USB-Stick mit root fs

                            HomoranH 1 Reply Last reply
                            2
                            • O oFbEQnpoLKKl6mbY5e13

                              @paul53

                              Danke!

                              2024-05-26 22:19:52.596  - info: javascript.0 (3416) Start JavaScript script.js.common._Tests.Test_17 (JavaScript/js)
                              2024-05-26 22:19:52.597  - error: javascript.0 (3416) script.js.common._Tests.Test_17 compile failed:
                              at script.js.common._Tests.Test_17:118
                              2024-05-26 22:19:52.598  - error: javascript.0 (3416) })();
                              2024-05-26 22:19:52.598  - error: javascript.0 (3416)  ^
                              2024-05-26 22:19:52.598  - error: javascript.0 (3416) SyntaxError: Unexpected token ')'
                              2024-05-26 22:19:52.598  - error: javascript.0 (3416)     at new Script (node:vm:99:7)
                              2024-05-26 22:19:52.598  - error: javascript.0 (3416)     at createVM (/opt/iobroker/node_modules/iobroker.javascript/main.js:1917:21)
                              2024-05-26 22:19:52.599  - error: javascript.0 (3416)     at prepareScript (/opt/iobroker/node_modules/iobroker.javascript/main.js:2183:37)
                              2024-05-26 22:19:52.599  - error: javascript.0 (3416)     at /opt/iobroker/node_modules/iobroker.javascript/main.js:2281:17
                              2024-05-26 22:19:52.599  - error: javascript.0 (3416)     at Immediate._onImmediate (/opt/iobroker/node_modules/iobroker.javascript/main.js:1703:17)
                              2024-05-26 22:19:52.599  - error: javascript.0 (3416)     at process.processImmediate (node:internal/timers:478:21)
                              2024-05-26 22:19:55.316  - info: javascript.0 (3416) Stopping script script.js.common._Tests.Test_17
                              
                              

                              An welcher Stelle ist die Klammer zu viel?

                              paul53P Offline
                              paul53P Offline
                              paul53
                              wrote on last edited by
                              #72

                              @ofbeqnpolkkl6mby5e13 sagte: An welcher Stelle ist die Klammer zu viel?

                              ?? Die komplette Testfunktion:

                              httpGet(options, (error, response) => {
                                  console.log(response.statusCode);
                                  console.log(response.data);
                              });
                              

                              Bitte verzichtet auf Chat-Nachrichten, denn die Handhabung ist grauenhaft !
                              Produktiv: RPi 2 mit S.USV, HM-MOD-RPI und SLC-USB-Stick mit root fs

                              O 1 Reply Last reply
                              0
                              • paul53P paul53

                                @ofbeqnpolkkl6mby5e13 sagte: An welcher Stelle ist die Klammer zu viel?

                                ?? Die komplette Testfunktion:

                                httpGet(options, (error, response) => {
                                    console.log(response.statusCode);
                                    console.log(response.data);
                                });
                                
                                O Offline
                                O Offline
                                oFbEQnpoLKKl6mbY5e13
                                wrote on last edited by
                                #73

                                @paul53

                                Aber das war nur ein winziger Ausschnitt aus einem größeren Skript:

                                const city_id = XXXXX;
                                const area_id = XXX;
                                const logging = false;
                                const name = 'Müllabfuhr';
                                const numberOfEntries = 69;
                                
                                const instanz = '0_userdata.' + instance + '.muell-test';
                                
                                if (logging) log('starting muell.' + instanz);
                                
                                extendObject(instanz, {
                                       type: "device",
                                       common: {
                                           name: name
                                       }
                                   }, function (err) {
                                       if (err) {
                                           log('could not create device: ', 'warn');
                                           return;
                                       }
                                   
                                   }
                                );
                                let baseData = {};
                                
                                // query names first
                                httpGet('https://mymuell.jumomind.com/mmapp/api.php?r=trash&city_id=' + city_id + '&area_id=' + area_id, { timeout: 2000 }, (error, response) => {
                                   if (!error && response.statusCode == 200) {
                                       console.log(response.statusCode);
                                       console.log(response.data);
                                   } else {
                                       console.error(error);
                                   var data = JSON.parse(response.data);  // info ist ein Objekt
                                           data.forEach((v, i) => {
                                               baseData[v._name] = v;
                                           })
                                   updateMuell();	
                                   }
                                });
                                
                                schedule('{"time":{"exactTime":true,"start":"12:17"},"period":{"days":1}}', updateMuell);
                                
                                function updateMuell() {
                                   var options = 'https://mymuell.jumomind.com/webservice.php?idx=termins&city_id=' + city_id + '&area_id=' + area_id + '&ws=3'
                                
                                   httpGet(options), (error, response) => {
                                   console.log(response.statusCode);
                                   console.log(response.data);
                                   if (!error && response.statusCode == 200) 
                                       var info = JSON.parse(response.data);  // info ist ein Objekt
                                           if (info[0].Ack === 'Success') {
                                               var data = info[0]._data;  // xy ist eine Eigenschaft des Objektes info
                                               let counter = 0;
                                               const date = (new Date())
                                               const todayStr = date.getFullYear() + "-" + ('00' + (date.getMonth() + 1 )).slice(-2) + "-" + ('00' + date.getDate()).slice(-2)
                                               log(todayStr);
                                               data.forEach((v, i) => {
                                                   if (todayStr < v.cal_date && counter <= numberOfEntries) {
                                                       
                                                       const basePath = instanz + '.' + ('000' + counter).slice(-3);
                                                       log(v.cal_date + ' -> ' + basePath, 'debug');
                                                       // States erstellen
                                                       extendObject(basePath, {
                                                               type: "channel",
                                                               common: {
                                                                   name: v.cal_date_normal
                                                               }
                                                           }, function (err) {
                                                               if (err) {
                                                                   log('could not create device: ', 'warn');
                                                                   return;
                                                               }
                                                           
                                                           }
                                                       );
                                                       createState(basePath + '.date', v.cal_date_normal, {
                                                           name: 'Datum',
                                                           desc: 'Datum der Abholung',
                                                           type: 'string',
                                                           read: true,
                                                           write: false
                                                       }, () => {
                                                           setState(basePath + '.date', v.cal_date_normal, true);
                                                       });
                                                       
                                                       createState(basePath + '.desc', baseData[v.cal_garbage_type].title, {
                                                           name: 'Beschreibung',
                                                           desc: 'Beschreibung der Abholung',
                                                           type: 'string',
                                                           read: true,
                                                           write: false
                                                       }, () => {
                                                           setState(basePath + '.desc', baseData[v.cal_garbage_type].title, true);
                                                       });
                                                       createState(basePath + '.color', {
                                                           name: 'Farbe',
                                                           desc: 'Farbe',
                                                           type: 'string',
                                                           role: 'level.color',
                                                           read: true,
                                                           write: false
                                                       }, () => {
                                                           setState(basePath + '.color', baseData[v.cal_garbage_type].color, true);
                                                       });
                                
                                                       counter++;
                                                   }
                                               });
                                           }
                                       };
                                   
                                

                                T 1 Reply Last reply
                                0
                                • O oFbEQnpoLKKl6mbY5e13

                                  @paul53

                                  Aber das war nur ein winziger Ausschnitt aus einem größeren Skript:

                                  const city_id = XXXXX;
                                  const area_id = XXX;
                                  const logging = false;
                                  const name = 'Müllabfuhr';
                                  const numberOfEntries = 69;
                                  
                                  const instanz = '0_userdata.' + instance + '.muell-test';
                                  
                                  if (logging) log('starting muell.' + instanz);
                                  
                                  extendObject(instanz, {
                                         type: "device",
                                         common: {
                                             name: name
                                         }
                                     }, function (err) {
                                         if (err) {
                                             log('could not create device: ', 'warn');
                                             return;
                                         }
                                     
                                     }
                                  );
                                  let baseData = {};
                                  
                                  // query names first
                                  httpGet('https://mymuell.jumomind.com/mmapp/api.php?r=trash&city_id=' + city_id + '&area_id=' + area_id, { timeout: 2000 }, (error, response) => {
                                     if (!error && response.statusCode == 200) {
                                         console.log(response.statusCode);
                                         console.log(response.data);
                                     } else {
                                         console.error(error);
                                     var data = JSON.parse(response.data);  // info ist ein Objekt
                                             data.forEach((v, i) => {
                                                 baseData[v._name] = v;
                                             })
                                     updateMuell();	
                                     }
                                  });
                                  
                                  schedule('{"time":{"exactTime":true,"start":"12:17"},"period":{"days":1}}', updateMuell);
                                  
                                  function updateMuell() {
                                     var options = 'https://mymuell.jumomind.com/webservice.php?idx=termins&city_id=' + city_id + '&area_id=' + area_id + '&ws=3'
                                  
                                     httpGet(options), (error, response) => {
                                     console.log(response.statusCode);
                                     console.log(response.data);
                                     if (!error && response.statusCode == 200) 
                                         var info = JSON.parse(response.data);  // info ist ein Objekt
                                             if (info[0].Ack === 'Success') {
                                                 var data = info[0]._data;  // xy ist eine Eigenschaft des Objektes info
                                                 let counter = 0;
                                                 const date = (new Date())
                                                 const todayStr = date.getFullYear() + "-" + ('00' + (date.getMonth() + 1 )).slice(-2) + "-" + ('00' + date.getDate()).slice(-2)
                                                 log(todayStr);
                                                 data.forEach((v, i) => {
                                                     if (todayStr < v.cal_date && counter <= numberOfEntries) {
                                                         
                                                         const basePath = instanz + '.' + ('000' + counter).slice(-3);
                                                         log(v.cal_date + ' -> ' + basePath, 'debug');
                                                         // States erstellen
                                                         extendObject(basePath, {
                                                                 type: "channel",
                                                                 common: {
                                                                     name: v.cal_date_normal
                                                                 }
                                                             }, function (err) {
                                                                 if (err) {
                                                                     log('could not create device: ', 'warn');
                                                                     return;
                                                                 }
                                                             
                                                             }
                                                         );
                                                         createState(basePath + '.date', v.cal_date_normal, {
                                                             name: 'Datum',
                                                             desc: 'Datum der Abholung',
                                                             type: 'string',
                                                             read: true,
                                                             write: false
                                                         }, () => {
                                                             setState(basePath + '.date', v.cal_date_normal, true);
                                                         });
                                                         
                                                         createState(basePath + '.desc', baseData[v.cal_garbage_type].title, {
                                                             name: 'Beschreibung',
                                                             desc: 'Beschreibung der Abholung',
                                                             type: 'string',
                                                             read: true,
                                                             write: false
                                                         }, () => {
                                                             setState(basePath + '.desc', baseData[v.cal_garbage_type].title, true);
                                                         });
                                                         createState(basePath + '.color', {
                                                             name: 'Farbe',
                                                             desc: 'Farbe',
                                                             type: 'string',
                                                             role: 'level.color',
                                                             read: true,
                                                             write: false
                                                         }, () => {
                                                             setState(basePath + '.color', baseData[v.cal_garbage_type].color, true);
                                                         });
                                  
                                                         counter++;
                                                     }
                                                 });
                                             }
                                         };
                                     
                                  

                                  T Offline
                                  T Offline
                                  TT-Tom
                                  wrote on last edited by
                                  #74

                                  @ofbeqnpolkkl6mby5e13 sagte in Hilfe für Javascript Legastheniker und js v8.3.x:

                                  httpGet(options), (error, response) => {

                                  Zeile 46 hinter options die ) muss weg.

                                  Gruß Tom
                                  https://github.com/tt-tom17
                                  Wenn meine Hilfe erfolgreich war, benutze bitte das Voting unten rechts im Beitrag

                                  NSPanel Script Wiki
                                  https://github.com/joBr99/nspanel-lovelace-ui/wiki

                                  NSPanel Adapter Wiki
                                  https://github.com/ticaki/ioBroker.nspanel-lovelace-ui/wiki

                                  O 1 Reply Last reply
                                  0
                                  • T TT-Tom

                                    @ofbeqnpolkkl6mby5e13 sagte in Hilfe für Javascript Legastheniker und js v8.3.x:

                                    httpGet(options), (error, response) => {

                                    Zeile 46 hinter options die ) muss weg.

                                    O Offline
                                    O Offline
                                    oFbEQnpoLKKl6mbY5e13
                                    wrote on last edited by
                                    #75

                                    @tt-tom

                                    2024-05-26 22:46:45.108  - error: javascript.0 (3416) script.js.common._Tests.Test_17 compile failed:
                                    at script.js.common._Tests.Test_17:111
                                    2024-05-26 22:46:45.109  - error: javascript.0 (3416)         };
                                    2024-05-26 22:46:45.109  - error: javascript.0 (3416)         ^
                                    2024-05-26 22:46:45.109  - error: javascript.0 (3416) SyntaxError: missing ) after argument list
                                    2024-05-26 22:46:45.109  - error: javascript.0 (3416)     at new Script (node:vm:99:7)
                                    2024-05-26 22:46:45.110  - error: javascript.0 (3416)     at createVM (/opt/iobroker/node_modules/iobroker.javascript/main.js:1917:21)
                                    2024-05-26 22:46:45.110  - error: javascript.0 (3416)     at prepareScript (/opt/iobroker/node_modules/iobroker.javascript/main.js:2183:37)
                                    2024-05-26 22:46:45.110  - error: javascript.0 (3416)     at /opt/iobroker/node_modules/iobroker.javascript/main.js:2281:17
                                    2024-05-26 22:46:45.110  - error: javascript.0 (3416)     at Immediate._onImmediate (/opt/iobroker/node_modules/iobroker.javascript/main.js:1703:17)
                                    2024-05-26 22:46:45.111  - error: javascript.0 (3416)     at process.processImmediate (node:internal/timers:478:21)
                                    2024-05-26 22:46:46.955  - info: javascript.0 (3416) Stopping script script.js.common._Tests.Test_17
                                    
                                    T 1 Reply Last reply
                                    0
                                    • O oFbEQnpoLKKl6mbY5e13

                                      @tt-tom

                                      2024-05-26 22:46:45.108  - error: javascript.0 (3416) script.js.common._Tests.Test_17 compile failed:
                                      at script.js.common._Tests.Test_17:111
                                      2024-05-26 22:46:45.109  - error: javascript.0 (3416)         };
                                      2024-05-26 22:46:45.109  - error: javascript.0 (3416)         ^
                                      2024-05-26 22:46:45.109  - error: javascript.0 (3416) SyntaxError: missing ) after argument list
                                      2024-05-26 22:46:45.109  - error: javascript.0 (3416)     at new Script (node:vm:99:7)
                                      2024-05-26 22:46:45.110  - error: javascript.0 (3416)     at createVM (/opt/iobroker/node_modules/iobroker.javascript/main.js:1917:21)
                                      2024-05-26 22:46:45.110  - error: javascript.0 (3416)     at prepareScript (/opt/iobroker/node_modules/iobroker.javascript/main.js:2183:37)
                                      2024-05-26 22:46:45.110  - error: javascript.0 (3416)     at /opt/iobroker/node_modules/iobroker.javascript/main.js:2281:17
                                      2024-05-26 22:46:45.110  - error: javascript.0 (3416)     at Immediate._onImmediate (/opt/iobroker/node_modules/iobroker.javascript/main.js:1703:17)
                                      2024-05-26 22:46:45.111  - error: javascript.0 (3416)     at process.processImmediate (node:internal/timers:478:21)
                                      2024-05-26 22:46:46.955  - info: javascript.0 (3416) Stopping script script.js.common._Tests.Test_17
                                      
                                      T Offline
                                      T Offline
                                      TT-Tom
                                      wrote on last edited by TT-Tom
                                      #76

                                      @ofbeqnpolkkl6mby5e13

                                      da fehlen irgendwo noch Klammern, bin grad mal am suchen

                                      Edit: probiere mal das jetzt.

                                      function updateMuell() {
                                          var options = 'https://mymuell.jumomind.com/webservice.php?idx=termins&city_id=' + city_id + '&area_id=' + area_id + '&ws=3'
                                      
                                          httpGet(options, (error, response) => {
                                              console.log(response.statusCode);
                                              console.log(response.data);
                                              if (!error && response.statusCode == 200) {
                                                  var info = JSON.parse(response.data);  // info ist ein Objekt
                                                  if (info[0].Ack === 'Success') {
                                                      var data = info[0]._data;  // xy ist eine Eigenschaft des Objektes info
                                                      let counter = 0;
                                                      const date = (new Date())
                                                      const todayStr = date.getFullYear() + "-" + ('00' + (date.getMonth() + 1)).slice(-2) + "-" + ('00' + date.getDate()).slice(-2)
                                                      log(todayStr);
                                                      data.forEach((v, i) => {
                                                          if (todayStr < v.cal_date && counter <= numberOfEntries) {
                                      
                                                              const basePath = instanz + '.' + ('000' + counter).slice(-3);
                                                              log(v.cal_date + ' -> ' + basePath, 'debug');
                                                              // States erstellen
                                                              extendObject(basePath, {
                                                                  type: "channel",
                                                                  common: {
                                                                      name: v.cal_date_normal
                                                                  }
                                                              }, function (err) {
                                                                  if (err) {
                                                                      log('could not create device: ', 'warn');
                                                                      return;
                                                                  }
                                      
                                                              }
                                                              );
                                                              createState(basePath + '.date', v.cal_date_normal, {
                                                                  name: 'Datum',
                                                                  desc: 'Datum der Abholung',
                                                                  type: 'string',
                                                                  read: true,
                                                                  write: false
                                                              }, () => {
                                                                  setState(basePath + '.date', v.cal_date_normal, true);
                                                              });
                                      
                                                              createState(basePath + '.desc', baseData[v.cal_garbage_type].title, {
                                                                  name: 'Beschreibung',
                                                                  desc: 'Beschreibung der Abholung',
                                                                  type: 'string',
                                                                  read: true,
                                                                  write: false
                                                              }, () => {
                                                                  setState(basePath + '.desc', baseData[v.cal_garbage_type].title, true);
                                                              });
                                                              createState(basePath + '.color', {
                                                                  name: 'Farbe',
                                                                  desc: 'Farbe',
                                                                  type: 'string',
                                                                  role: 'level.color',
                                                                  read: true,
                                                                  write: false
                                                              }, () => {
                                                                  setState(basePath + '.color', baseData[v.cal_garbage_type].color, true);
                                                              });
                                      
                                                              counter++;
                                                          }
                                                      });
                                                  }
                                              };
                                          })
                                      }
                                      

                                      Gruß Tom
                                      https://github.com/tt-tom17
                                      Wenn meine Hilfe erfolgreich war, benutze bitte das Voting unten rechts im Beitrag

                                      NSPanel Script Wiki
                                      https://github.com/joBr99/nspanel-lovelace-ui/wiki

                                      NSPanel Adapter Wiki
                                      https://github.com/ticaki/ioBroker.nspanel-lovelace-ui/wiki

                                      O 1 Reply Last reply
                                      1
                                      • T TT-Tom

                                        @ofbeqnpolkkl6mby5e13

                                        da fehlen irgendwo noch Klammern, bin grad mal am suchen

                                        Edit: probiere mal das jetzt.

                                        function updateMuell() {
                                            var options = 'https://mymuell.jumomind.com/webservice.php?idx=termins&city_id=' + city_id + '&area_id=' + area_id + '&ws=3'
                                        
                                            httpGet(options, (error, response) => {
                                                console.log(response.statusCode);
                                                console.log(response.data);
                                                if (!error && response.statusCode == 200) {
                                                    var info = JSON.parse(response.data);  // info ist ein Objekt
                                                    if (info[0].Ack === 'Success') {
                                                        var data = info[0]._data;  // xy ist eine Eigenschaft des Objektes info
                                                        let counter = 0;
                                                        const date = (new Date())
                                                        const todayStr = date.getFullYear() + "-" + ('00' + (date.getMonth() + 1)).slice(-2) + "-" + ('00' + date.getDate()).slice(-2)
                                                        log(todayStr);
                                                        data.forEach((v, i) => {
                                                            if (todayStr < v.cal_date && counter <= numberOfEntries) {
                                        
                                                                const basePath = instanz + '.' + ('000' + counter).slice(-3);
                                                                log(v.cal_date + ' -> ' + basePath, 'debug');
                                                                // States erstellen
                                                                extendObject(basePath, {
                                                                    type: "channel",
                                                                    common: {
                                                                        name: v.cal_date_normal
                                                                    }
                                                                }, function (err) {
                                                                    if (err) {
                                                                        log('could not create device: ', 'warn');
                                                                        return;
                                                                    }
                                        
                                                                }
                                                                );
                                                                createState(basePath + '.date', v.cal_date_normal, {
                                                                    name: 'Datum',
                                                                    desc: 'Datum der Abholung',
                                                                    type: 'string',
                                                                    read: true,
                                                                    write: false
                                                                }, () => {
                                                                    setState(basePath + '.date', v.cal_date_normal, true);
                                                                });
                                        
                                                                createState(basePath + '.desc', baseData[v.cal_garbage_type].title, {
                                                                    name: 'Beschreibung',
                                                                    desc: 'Beschreibung der Abholung',
                                                                    type: 'string',
                                                                    read: true,
                                                                    write: false
                                                                }, () => {
                                                                    setState(basePath + '.desc', baseData[v.cal_garbage_type].title, true);
                                                                });
                                                                createState(basePath + '.color', {
                                                                    name: 'Farbe',
                                                                    desc: 'Farbe',
                                                                    type: 'string',
                                                                    role: 'level.color',
                                                                    read: true,
                                                                    write: false
                                                                }, () => {
                                                                    setState(basePath + '.color', baseData[v.cal_garbage_type].color, true);
                                                                });
                                        
                                                                counter++;
                                                            }
                                                        });
                                                    }
                                                };
                                            })
                                        }
                                        
                                        O Offline
                                        O Offline
                                        oFbEQnpoLKKl6mbY5e13
                                        wrote on last edited by
                                        #77

                                        @tt-tom

                                        Danke, es kommt kein Fehler mehr! Eine Objektstruktur wird weiterhin nicht angelegt.

                                        T 1 Reply Last reply
                                        0
                                        • O oFbEQnpoLKKl6mbY5e13

                                          @tt-tom

                                          Danke, es kommt kein Fehler mehr! Eine Objektstruktur wird weiterhin nicht angelegt.

                                          T Offline
                                          T Offline
                                          TT-Tom
                                          wrote on last edited by
                                          #78

                                          @ofbeqnpolkkl6mby5e13
                                          okay dann brauche ich mal das komplette Log vom Start das Script. Muss mir mal die Daten ansehen, die da kommen.

                                          Gruß Tom
                                          https://github.com/tt-tom17
                                          Wenn meine Hilfe erfolgreich war, benutze bitte das Voting unten rechts im Beitrag

                                          NSPanel Script Wiki
                                          https://github.com/joBr99/nspanel-lovelace-ui/wiki

                                          NSPanel Adapter Wiki
                                          https://github.com/ticaki/ioBroker.nspanel-lovelace-ui/wiki

                                          O 1 Reply Last reply
                                          0
                                          Reply
                                          • Reply as topic
                                          Log in to reply
                                          • Oldest to Newest
                                          • Newest to Oldest
                                          • Most Votes


                                          Support us

                                          ioBroker
                                          Community Adapters
                                          Donate

                                          421

                                          Online

                                          32.6k

                                          Users

                                          82.2k

                                          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