• Recent
  • Tags
  • Unsolved
  • Solved
  • MagicMirror² Repository
  • Documentation
  • 3rd-Party-Modules
  • Donate
  • Discord
  • Register
  • Login
MagicMirror Forum
  • Recent
  • Tags
  • Unsolved
  • Solved
  • MagicMirror² Repository
  • Documentation
  • 3rd-Party-Modules
  • Donate
  • Discord
  • Register
  • Login
A New Chapter for MagicMirror: The Community Takes the Lead
Read the statement by Michael Teeuw here.

Unable to display weather description

Scheduled Pinned Locked Moved Requests
9 Posts 2 Posters 2.7k Views 2 Watching
Loading More Posts
  • 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.
  • L Offline
    Leone510es @mochman
    last edited by Mar 18, 2018, 9:41 AM

    @mochman Thanks for the great tip! Now I can see in the console whats happening in the background, and it’s really interesting.

    I’ve put console.log in 3 places in the code:

    1. in the start: function()
    console.log("Description 1 - " + this.desc); //See if anything is output
    
    1. in the getDom: function()
    var description = document.createElement("div");
    description .innerHTML = this.desc;
    large.appendChild(description);
    console.log("Description 2 - " + this.desc); //See if anything is output
    
    1. and in the processWeather: function(data)
    this.desc = data.weather[0].description;
    console.log("Description 3 - " + this.desc); //See if anything is output
    

    I also put a test line in the getDom function to see if it’s working:

    var test = document.createElement("div");
    test.innerHTML = "Lorem ipsum.." + this.desc + "..END";
    large.appendChild(test);
    

    And here you can see the results:
    0_1521365546142_mmirror.jpg

    As you can see, only the third console.log has the value, and the first two has only “null”. The “null” is also in the test line Lorem ipsum…

    Any idea whats wrong? I think I’m really close to the solution, but I just need some more help :)

    1 Reply Last reply Reply Quote 0
    • L Offline
      Leone510es
      last edited by Mar 18, 2018, 9:48 AM

      @mochman Something happened :) After I submitted the post 2 minutes ago, I went back to the MagicMirror and…look :)
      0_1521366334598_mmirror2.jpg

      So I think after a few minutes, the processWeather: function() updated itself, and could display the correct value.
      But still, do you think we can make it work so it will display the correct value at first run?

      1 Reply Last reply Reply Quote 0
      • M Offline
        mochman Module Developer
        last edited by Mar 18, 2018, 2:19 PM

        Well I’m glad it started mostly working. Sorry about the array of weather I was talking about earlier. I though you were using the weatherforecast module to get this info, not currentweather. The way you’re describing the issue, it sounds like the updateDOM() function is getting called before that value is set. Where in the processWeather() function did you put this.desc = data.weather[0].description;? is it before this section?

        this.show(this.config.animationSpeed, {lockString:this.identifier});
        this.loaded = true;
        this.updateDom(this.config.animationSpeed);
        this.sendNotification("CURRENTWEATHER_DATA", {data: data});
        
        L 1 Reply Last reply Mar 18, 2018, 4:24 PM Reply Quote 0
        • L Offline
          Leone510es @mochman
          last edited by Mar 18, 2018, 4:24 PM

          @mochman Ohhh you are sooo right!! I messed up the code, the declaration was after the updateDom function. I moved it before the function, and now it’s wooorkiiing!!! :)
          Thank You Soooo much! I’m very happy now that it’s working like a charm :)

          1 Reply Last reply Reply Quote 0
          • M Offline
            mochman Module Developer
            last edited by Mar 18, 2018, 9:37 PM

            Glad to hear it.

            1 Reply Last reply Reply Quote 0
            • 1 / 1
            1 / 1
            • First post
              9/9
              Last post
            Enjoying MagicMirror? Please consider a donation!
            MagicMirror created by Michael Teeuw.
            Forum managed by Sam, technical setup by Karsten.
            This forum is using NodeBB as its core | Contributors
            Contact | Privacy Policy