Loading data into HTML Tables using AJAX - JavaScript Tutorial

Поділитися
Вставка
  • Опубліковано 4 січ 2025

КОМЕНТАРІ • 95

  • @andrewmcwilliam1764
    @andrewmcwilliam1764 5 років тому +2

    As a rank amateur watching and listening to you, I find that you make perfect sense and are easy to follow. Great vid!

  • @jamesserenity8634
    @jamesserenity8634 3 роки тому +2

    At 13:00 the console.log(cell) won't print for me? Any ideas, it's coming from a server fetched from a database. It worked for the rows

    • @jacobhobday111
      @jacobhobday111 3 роки тому

      Check the variable name you have declared, could be that?

  • @brightm.chongo9192
    @brightm.chongo9192 4 роки тому +3

    This is purely genius Dom. Exactly what I was looking for in my Remote Server Monitoring System project. Well explained and extremely helpful. Being a newbie to web development, I wish I could be your student. :)

  • @cloudpuncher4615
    @cloudpuncher4615 6 років тому +2

    Your a legend mate. Short, sweet, easy to understand and very useful. You should get a patreon mate.

    • @dcode-software
      @dcode-software  6 років тому

      Hey Steve! Thanks for your continuous support mate, it means a lot 😁 - and yes I did recently create a Patreon page which you can find in the description if you'd like to check it out!

    • @cloudpuncher4615
      @cloudpuncher4615 6 років тому +1

      will do mate, gw

  • @wandrade07
    @wandrade07 6 років тому +3

    You are an excellent instructor. Lifesaver. Thank you.

  • @captainalpha4853
    @captainalpha4853 4 роки тому

    Im literally mind blown by the way you explain! it's reaaallyyyyy cool man. Please keep it up. Love you man!

  • @gabo182b
    @gabo182b Рік тому

    Thank you so much for this man !! a big hug as usual amazing content!!

  • @lesbristow5657
    @lesbristow5657 4 роки тому +1

    Great vid - cover exactly the task I have in hand - and without using any terms I was not familiar with.
    Clear explanation of all the steps - Thanks

  • @TomasMisura
    @TomasMisura 5 років тому +2

    thanks a lot for this video. regardless I have been using AJAX for a long time I have found something what I didn't know and learned a little bit more :)

  • @gamblerau
    @gamblerau 4 роки тому +1

    Thanks for that. What if I had a constantly changing json file. How could I update the table every minute for example without reloading the page?

  • @salmanali-yn3tw
    @salmanali-yn3tw 6 років тому +1

    Excellent video mate. Keep up the good work!

  • @nasarnasar9876
    @nasarnasar9876 4 роки тому

    Excellent tutorial, thanks DOM 😃

  • @10F2C
    @10F2C 2 роки тому

    how do I fetch with post request and use the data on the other side

  • @shawncarpenter5024
    @shawncarpenter5024 6 років тому +2

    Awesome tutorial! Been looking for this thanks for posting.

  • @safe730
    @safe730 3 роки тому

    Thank you for this tutorial.
    I load a table with more line that the page becomes scrollable. the problem is that the head scrolls all along with the data. my issue is how to get the header sticky ?
    than you again.

  • @ifeanyinnaemego
    @ifeanyinnaemego 3 роки тому

    What about adding edit and delete to the table row

  • @ramziaswad3079
    @ramziaswad3079 5 років тому +5

    Can you tell us please how can we load the data from database (sql)

  • @roficakep
    @roficakep 5 років тому +1

    how to create dynamic forms whose data comes from json like this, which I use for the data edit form. please help me.

  • @victor_yahoo
    @victor_yahoo 4 роки тому

    Excellent - Thank you. It;s a must watch video on the subject.

  • @luther6969
    @luther6969 4 роки тому +1

    Thank you for this. Got it to work but I want to locate it in an external JS file. When I do this I get the "could not get rankings" error. Any idea why this is?

  • @prabhatjena5833
    @prabhatjena5833 4 роки тому

    can you make a video on putting a select box inside a table and populating data including every data comes from json mean table header data and table body data

  • @mr.RAND5584
    @mr.RAND5584 4 роки тому

    How to add a button for each row, coz i want a delete, update, submit for each row?

  • @HisyamKazim
    @HisyamKazim 4 роки тому

    Nice tutorial, I'm applying server side ajax request using this, thanks :)

  • @am-kl2lg
    @am-kl2lg 4 роки тому

    have you got a tutorial for a blob upload in a database with ajax?

  • @sumgowda6386
    @sumgowda6386 4 роки тому

    can we get the json from a servlet?

  • @pbarb726
    @pbarb726 5 років тому +2

    I'm using web server for chrome and keep getting "could not load rankings" in the console. Any ideas?

    • @MathUniversity1.0
      @MathUniversity1.0 4 роки тому

      Hopefully I'm not too late, but I had the issue, and resolved it (ok well I cheated) by switching over to using code sand box instead of visual studio or some other such ide.

  • @brainfunmax2845
    @brainfunmax2845 5 років тому

    I follow along but fail at 8:34 with the following error message:
    Could not load rankings!
    request.onload @ index.html:61
    load (async)
    loadRankings @ index.html:56
    (anonymous) @ index.html:71
    what is this problem about and how to solve it?
    Here is the code:
    const rankingsBody = document.querySelector("#ranking-table > tbody");
    function loadRankings () {
    const request = new XMLHttpRequest();
    request.open("get","data/rankings.json");
    request.onload = () => {
    try {
    const json = JSON.parse(request.responseText);
    populateRankings(json);
    } catch (e) {
    console.warn("Could not load rankings!");
    }
    };
    request.send();
    }
    function populateRankings (json) {
    console.log(json);
    }
    document.addEventListener("DOMContentLoaded", () => {loadRankings(); });

    • @dcode-software
      @dcode-software  5 років тому +1

      Do console.log(e) instead of the "Could not load rankings!" And see what the error is

    • @brainfunmax2845
      @brainfunmax2845 5 років тому

      @@dcode-software I found syntax error in my json file, it works now, thank you so much

  • @isaacrodrigueziriarte3442
    @isaacrodrigueziriarte3442 6 років тому +2

    It looks cool! But, I have a little problem: Getting the data from a PHP file using the json_encode method, the resulting JSON it's very different from the one you created, because is made of arrays and the json are made of objects. Could you make a video teaching how to do it in that case? I will appreciate it a lot
    Thanks for this video

  • @LORD_ORiGiNALz
    @LORD_ORiGiNALz 4 роки тому

    Hey I'm wondering if you could answer my questions
    1. Connecting to the server endpoints
    (Explain how to make a connection (Ajax), build URL etc.)
    2. Accessing the data
    (Show the structure of the data returned and explain how to access.)
    Would you be able to explain these in simple English as I'm still new to this whole thing

  • @tazulislam2698
    @tazulislam2698 4 роки тому

    how to fetch google sheet data in website?

  • @kolecava
    @kolecava 6 років тому +2

    How can I populate a a table with a JSON output like this?
    [
    {
    "rank": 1,
    "team": "Steeltab",
    "country": "Kyrgyzstan",
    "player": {
    "one": "Laurie",
    "two": "Rowland"
    },
    "points": 2019
    }
    ]
    Extremely good and clear tutorial btw!

    • @dcode-software
      @dcode-software  6 років тому

      Thank you, and it's hard to say.. I think you'll need to decide how you'd want to do that on your own

  • @atharvkulkarni2548
    @atharvkulkarni2548 5 років тому

    Keep up the good work man!

  • @purplefan204
    @purplefan204 3 роки тому

    Awesome video. One comes across such videos very very rarely. Highly recommended for everyone trying to understand such concepts. I have one request: Could you suggest how to handle thousands separator for numbers, please? Option of converting to strings and then inserting separator using RegEx seems too roundabout.

  • @Pareshbpatel
    @Pareshbpatel 3 роки тому

    Beautifully explained. Thank you very much.
    {2021-06-28}

  • @themaughan3378
    @themaughan3378 3 роки тому

    Ok, now how do you do this with objects?

  • @MsJOEL29
    @MsJOEL29 6 років тому +1

    Hi very good tutorial I been wanting to do something like that before but I could't, I can do it now but if I add more data to each array it won't run, like more than 3 columns. Does the array have to be the same? Can they contain empty cells or null values?

    • @dcode-software
      @dcode-software  6 років тому

      I'd probably use "null" as a placeholder that way you can just skip over that cell and still keep the same amount of items in the array

  • @rickyu1978
    @rickyu1978 6 років тому +1

    curious, why not use fetch instead of xmlhttprequest?

    • @dcode-software
      @dcode-software  6 років тому +1

      Hey, more people are familiar with XHR and it's widely supported - however the Fetch API is definitely on my list of topics to cover 😁

    • @rickyu1978
      @rickyu1978 6 років тому +1

      you're up their with netninja and some the best on youtube. keep them coming, solving real world problems...great audio quality and no nonsense intro. as a newbie js developer (less than a year) i learned fetch and axios rather than xhr which i believe was used to parse xml vs json files.. anyhow keep it up.. it would be cool if you do a series.

    • @dcode-software
      @dcode-software  6 років тому

      Thanks for the support! 😁 - and yes I'll likely create a few videos to cover the Fecth API

  • @javierromero7976
    @javierromero7976 6 років тому

    Great video! How do you make the table rows you created with JSON data selectable? I noticed there aren't any good videos out there showing how to do that...

    • @dcode-software
      @dcode-software  6 років тому

      What do you mean by selectable? As in you can click them?

    • @javierromero7976
      @javierromero7976 6 років тому

      @@dcode-software hi, i mean adding a checkbox to select a specific row from the table. Is that doable with your example? Thank you!!

  • @DRocksRecords
    @DRocksRecords 4 роки тому

    Nice tutorial thanks a lot, it was one of my actual question and you answered it well

  • @poornas
    @poornas 4 роки тому

    Thank you. Great video. :)

  • @PraveenKishor123
    @PraveenKishor123 4 роки тому +1

    thanks .. you got one new subscriber :)

  • @tudorhulban2817
    @tudorhulban2817 6 років тому +5

    thank you for the content. maybe you could use bigger font to be friendly for mobile screens

    • @dcode-software
      @dcode-software  6 років тому

      Hey mate! No worries - and thanks for that piece of advice I'll definitely keep it in mind

  • @mariacristinaulloagarrido1224
    @mariacristinaulloagarrido1224 2 роки тому

    Realmente bueno!! Muchas gracias!!

  • @ImranKhan-nb3jy
    @ImranKhan-nb3jy 3 роки тому

    Thanks for very useful video, My console.log is not working , when I am trying to retrieve json from url

    • @dcode-software
      @dcode-software  3 роки тому

      What's happening?

    • @ImranKhan-nb3jy
      @ImranKhan-nb3jy 3 роки тому

      @@dcode-software its just saying undefined ! If its possible I can email you that I have done

    • @dcode-software
      @dcode-software  3 роки тому

      Just post the full error or post the code somewhere and I can point you in the right direction

    • @ImranKhan-nb3jy
      @ImranKhan-nb3jy 3 роки тому

      @@dcode-software function loadWeathe(){
      const request = new XMLHttpRequest();
      request.open("get", "Access-Control-Allow-Origin: 127.0.0.1:8000/api/weather", true);
      request.onload = function(){
      const json = JSON.parse(request.responseText);
      console.log(json);
      };
      request.send();
      };
      its giving output : undefined

  • @user-yy6or3fz6o
    @user-yy6or3fz6o 5 років тому +1

    Super helpful

  • @abhilashk
    @abhilashk 3 роки тому

    wow, thank you so much

  • @Mrcherrypicked
    @Mrcherrypicked 4 роки тому

    Hi, great video, but I'm a newbie and would like to see the source code so I can understand it clearly. Do you have the HTML with the javascript content available to subscribers? Thanks

    • @Mrcherrypicked
      @Mrcherrypicked 4 роки тому

      BTW, I looked on the links provided and nothing there...

  • @malekhammou7572
    @malekhammou7572 5 років тому

    Thank you for this great content.

  • @devgabriel6898
    @devgabriel6898 5 років тому

    Great video!! Im learning JS and this is pure gold to me.
    Aside note: Is not easier now with the template literals?

    • @dcode-software
      @dcode-software  5 років тому +1

      No worries mate! And I guess that depends on personal preference or just what works better in your situation. The performance difference would be minimial

  • @kunited9
    @kunited9 4 роки тому +15

    The guy is actually called DOM

  • @AmritaBakshi
    @AmritaBakshi 5 років тому +1

    Awesome!

  • @florisbastiaan1113
    @florisbastiaan1113 5 років тому +1

    could you leave the source code in the discription?

  • @lyndonbanate2228
    @lyndonbanate2228 5 років тому

    I am having trouble in enabling my CORS how can I resolve this? Please help

    • @dcode-software
      @dcode-software  5 років тому

      On the server, you'll need to change the response header "Access-Control-Allow-Origin" to "*" - but this is a work around, basically means your server can accept requests from any client

    • @lyndonbanate2228
      @lyndonbanate2228 5 років тому +1

      @@dcode-software Thanks! I got the solution.

    • @ujjwalaggarwal2633
      @ujjwalaggarwal2633 5 років тому

      @@lyndonbanate2228 how you solve this problem i am suffering from same problem?

  • @kannadahollywood
    @kannadahollywood 3 роки тому

    Hi bro
    Please add a video loading CSV file into html and later search required data in html. Please bro please make a video for this

  • @nehneh5488
    @nehneh5488 4 роки тому +1

    Thanks

  • @sarthakkapoor4003
    @sarthakkapoor4003 2 роки тому

    where is source code

  • @ricky52219
    @ricky52219 4 роки тому

    Ahh.. my eyes hurt. what is that light? Oh, this white theme in the vs code should be banned...

  • @inayatnadaf9143
    @inayatnadaf9143 3 роки тому

    How do we pass html content in ajax