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.

    http request

    Scheduled Pinned Locked Moved Development
    53 Posts 7 Posters 46.4k Views 6 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.
    • A Offline
      acdacd2 @Eunanibus
      last edited by

      @Eunanibus Based on a xml file containing data from temperature captors, via the code above in php I visualise some data in a html table.

      I need convert the php code to js code, i think

      1 Reply Last reply Reply Quote 0
      • E Offline
        Eunanibus Module Developer
        last edited by

        Sure. So I’d probably go about it with this approach and work from there:

        Try starting with the HelloWorld module and work from there. I’d start with putting this in the GetDom() function and return the contents of whatever you want displayed in the wrapper by appending it.

        var wrapper = document.createElement("div");
        var xmlhttp = new XMLHttpRequest();
        var url = "http://ip:8889/status.xml";
        
        xmlhttp.onreadystatechange = function() {
            if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
                var results = JSON.parse(xmlhttp.responseText);
                wrapper.innerHTML = parseResults(results);
            }
        };
        xmlhttp.open("GET", url, true);
        xmlhttp.send();
        return wrapper;
        
        function parseResults(results) {
           var nodes = results.childNodes;.
           var resultsContainer = document.createElement("div");
            var out = "";
            var i;
            for(i = 0; i < results.length; i++) {
                var resultWrapper = document.createElement("div");
                resultWrapper.innerHTML = x[i].nodeName + ": " + x[i].childNodes[0].nodeValue + "<br>";
              resultsContainer.appendChild(resultWrapper);
            }
            return resultsContainer;
        }
        

        I’m a bit of a beginner too, but I think that might give you something to start with?

        1 Reply Last reply Reply Quote 0
        • A Offline
          acdacd2
          last edited by

          wow super,

          I’m trying to run the code but “ReferenceError: document is not defined”

          1 Reply Last reply Reply Quote 0
          • E Offline
            Eunanibus Module Developer
            last edited by

            I’m replying Mobile at the moment so I can’t give you a comprehensive answer (sorry) - does it say which line the error occurs?

            Ensure that the parseData function is not within the GetDom() method, but isolated on its own. Go through and ensure that the document.createElement(“div”) function is referencing a document.

            Sorry, I mocked up that code in about 10 minutes and I’m not an expert so there may be issues.

            1 Reply Last reply Reply Quote 0
            • A Offline
              acdacd2
              last edited by

              ok no problem, I will try to check and share of course

              1 Reply Last reply Reply Quote 0
              • A Offline
                acdacd2
                last edited by

                I think I’m not sure where exactly to put the code

                1 Reply Last reply Reply Quote 0
                • E Offline
                  Eunanibus Module Developer
                  last edited by

                  Ok. I took a look at this last night and I’m getting somewhere so let me get back to you on this. I’m just trying to create the module for you.

                  1 Reply Last reply Reply Quote 0
                  • A Offline
                    acdacd2
                    last edited by

                    ok, any thanks

                    1 Reply Last reply Reply Quote 0
                    • E Offline
                      Eunanibus Module Developer
                      last edited by

                      Having good success. Can I get an example of the XML you’re trying to display?

                      1 Reply Last reply Reply Quote 0
                      • E Offline
                        Eunanibus Module Developer
                        last edited by Eunanibus

                        Well, I’ve spent the last couple of evenings trying to build something for you. You can download it here.

                        Give it a try and let me know how it does for you.

                        1 Reply Last reply Reply Quote 0
                        • 1
                        • 2
                        • 3
                        • 4
                        • 5
                        • 6
                        • 1 / 6
                        • First post
                          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