POST form data using JavaScript's Fetch API

Поделиться
HTML-код
  • Опубликовано: 10 сен 2024
  • 👉 Source code: openjavascript...
    ⚡ Looking for high-performance, affordable web hosting for your website or app? We use HostWithLove: bit.ly/3V2RM9Q ❤️
    Form data can be sent via JavaScript's Fetch API by converting the form element into a FormData object or a URL-encoded string and specifying this as the body of the fetch request.
    #javascript #fetch #fetchapi #httprequest #formdata #api
    🔔 Subscribe for more tutorials just like this: / @openjavascript
    ⚡ NEW: Web development courses from Meta Inc. ⚡
    Front-End Developer Professional Certificate: imp.i384100.ne...
    Back-End Developer Professional Certificate: imp.i384100.ne...
    iOS Developer Professional Certificate: imp.i384100.ne...
    Meta Android Developer Professional Certificate: imp.i384100.ne...
    Meta Database Engineer Professional Certificate: imp.i384100.ne...
    Website: openjavascript...
    Twitter: / openjavascript

Комментарии • 38

  • @OpenJavaScript
    @OpenJavaScript  Год назад +2

    Thanks for watching!
    👉Source code and live examples: openjavascript.info/2022/04/26/post-form-data-using-javascripts-fetch-api/

  • @whatisthis__95
    @whatisthis__95 Год назад +2

    One important detail that you didn't mention is that each imput has to have a name attribute (with a value) to be included in the formData element, otherwise it skips it

  • @tolorunseelizabeth8592
    @tolorunseelizabeth8592 7 месяцев назад

    This helped me solve the problem I've been facing for a long time now, thank you very much.

  • @jamespaulchibole266
    @jamespaulchibole266 Год назад +1

    Thank you, extremely important.

  • @kodenigga2380
    @kodenigga2380 2 года назад

    Wow awesome I have been looking for something like this for a while now. Thanks alot

  • @Investigador9766
    @Investigador9766 9 месяцев назад

    thanks. i was getting frustated with the content type, when i fetch the FormData to a servlet it came out empty, just adding URLSearshParam made it work.

  • @viniciusm.m.7822
    @viniciusm.m.7822 2 года назад +2

    Excellent explanation, dude!
    Thanks!
    Forte abraço!

    • @OpenJavaScript
      @OpenJavaScript  2 года назад +1

      Thank you! Glad you found the video useful.

    • @jayvincent4248
      @jayvincent4248 Год назад

      @@OpenJavaScript no, thank you. i love your channel. you got a new subscriber

  • @romimaximus
    @romimaximus 2 года назад +2

    I really like your videos, ...but your Mic volume its reallly low !!!

    • @OpenJavaScript
      @OpenJavaScript  2 года назад +1

      Thank you for the feedback!
      I'll look into it for the next videos.

  • @krishnajoshi9076
    @krishnajoshi9076 Год назад +1

    I copy pasted the same code but its showing error at this point
    form.addEventListener('submit', function(e) {

    • @OpenJavaScript
      @OpenJavaScript  Год назад

      I did write a related blog for this tutorial with code as a live working example, I think copying/studying that should help you out: openjavascript.info/2022/04/26/post-form-data-using-javascripts-fetch-api/

  • @marie-elizeventer7080
    @marie-elizeventer7080 2 года назад

    Great tutorial! Thanks! Keep going!

    • @OpenJavaScript
      @OpenJavaScript  2 года назад

      Thank you, planning to continue making videos!

  • @j.nmwaniki8482
    @j.nmwaniki8482 Год назад +1

    any complete tutorial for posting to database a form data with image attachment??

    • @OpenJavaScript
      @OpenJavaScript  Год назад

      I do not have a tutorial on posting to a database but I do have one on handling the receiving of form data with a file attachment on the backend with a Node.js server (from where you would then securely post to a database):
      ruclips.net/video/4sTmSlZDGow/видео.html
      I steered away from the actual database call because there are so many different options, but I am going to do a small series on interacting with a MySQL database via Node.js/JavaScript soon.

  • @Surajverma003
    @Surajverma003 11 месяцев назад

    thanku very helpfull video 👍...

  • @cool-coding_by_True-face
    @cool-coding_by_True-face 9 месяцев назад

    Tres bon contenu 🤓🤓🤓

  • @tiagoborges5108
    @tiagoborges5108 2 года назад +1

    Thanh you for the video. I would like to know if you have any video talking about the formdata object and ajax?

    • @OpenJavaScript
      @OpenJavaScript  2 года назад

      I did make a video on making AJAX POST requests: ruclips.net/video/I7LTqXRVcdg/видео.html&ab_channel=OpenJavaScript
      I don't use the formData object in it, but you would prepare and payload using fromData in the same way as in this video. And then you'd insert it at the end of the request with AJAX. E.g.:
      req.send(payload)
      Using the formData object will automatically detect the payload content and set request headers for you, but you don't have to use it.

    • @tiagoborges5108
      @tiagoborges5108 2 года назад

      @@OpenJavaScript thank you for the response.

  • @nikolozdvali5767
    @nikolozdvali5767 Год назад +1

    I have all input data saved in local storage and want to send it. Is there any way to send formdata from there

    • @OpenJavaScript
      @OpenJavaScript  Год назад +2

      Yes, data is stored in LS in key-value format. To get in a regular object, you can use:
      const obj = Object.entries(localStorage) to get the
      From there, you could use a for...in loop to push each bit of data from the object into a FormData object:
      const fd = new FormData();
      for (key in obj) {
      fd.append(key, obj[key]);
      }
      console.log(...fd); // Prints its contents

    • @nikolozdvali5767
      @nikolozdvali5767 Год назад +1

      @@OpenJavaScript thank you very much

    • @OpenJavaScript
      @OpenJavaScript  Год назад

      @@nikolozdvali5767 Welcome!

  • @tienskz.official
    @tienskz.official Год назад +1

    unexpected end of json input

    • @OpenJavaScript
      @OpenJavaScript  Год назад

      Hard to diagnose without running your code myself other than there's something going wrong when you are reading JSON. Most likely when you are parsing the response from the server from JS object to JSON using res.json(), but impossible for me to say with certainty.
      But you can check out this blog post that contains a working version of the code with live example (just tested and is still working) and compare it to your code:
      openjavascript.info/2022/04/26/post-form-data-using-javascripts-fetch-api/

  • @paulochagas7575
    @paulochagas7575 2 года назад

    really thanks!

  • @hemersonallan
    @hemersonallan 2 года назад

    Awesome !!!

  • @j.nmwaniki8482
    @j.nmwaniki8482 Год назад +1

    post to database not log

    • @OpenJavaScript
      @OpenJavaScript  Год назад

      I did just create a video on posting text and file data to a MySQL database that you might find useful: ruclips.net/video/xwfeik3bPpw/видео.html
      It's in Node.js so you'll want to make sure that's installed on your system before following this tutorial, here's a tutorial on that in case you haven't already: ruclips.net/video/hekIHfOil50/видео.html
      And for receiving form data in Node.js in the first place, this tutorial shows you how: ruclips.net/video/4sTmSlZDGow/видео.html

  • @zachfenton608
    @zachfenton608 2 года назад

    Great code but i get the error:Uncaught TypeError: Cannot read properties of null (reading 'addEventListener')
    at fetch_api.js:5:6
    (anonymous) @ fetch_api.js:5

    • @OpenJavaScript
      @OpenJavaScript  2 года назад

      Hi Zach, based on the error, perhaps the form hasn't been selected or selected correctly?
      Here is some source code that you can copy:
      openjavascript.info/2022/04/26/post-form-data-using-javascripts-fetch-api/
      If you are still having an issue, let me know.