Node and Express - Handling HTML Forms

Поделиться
HTML-код
  • Опубликовано: 2 янв 2025

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

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

    I am not that kind of person who usually comments on videos but the quality and clarity of your video has forced me not to leave the video without a comment. You are awesome and thanks...

  • @hughj7705
    @hughj7705 2 года назад +3

    None of the other tutorials I used explained everything like you did. Thanks!

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

    I was having a hard time finding a relevant video that explained all the concepts I was struggling with, and your video came to the rescue 😃.. Thanks!!

  • @akravt1274
    @akravt1274 4 месяца назад

    The best video I have seen, very clear explanation, thank you so much for your time and effort.

    • @WittCode
      @WittCode  4 месяца назад

      Sweet! Thanks for watching! 😀

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

    Me ayudaste a comprender un montón de cosas hermano, gracias y buen video

  • @edunjobiemmanuel4200
    @edunjobiemmanuel4200 6 месяцев назад

    Thanks for this

  • @technologypower6633
    @technologypower6633 2 года назад +3

    nice

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

    good job

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

    I am confused by something. You say to use both express.json and express.urlencoded. Why would we use both and not one or the other? Wouldn't we design our form to submit in whatever type we choose? This would never be random would it?

    • @WittCode
      @WittCode  5 месяцев назад

      That is just so we can handle both application/json and application/www-url-encoded!

  • @naveendx1707
    @naveendx1707 3 месяца назад

    Some help to node.js file

    • @WittCode
      @WittCode  3 месяца назад

      Sorry what do you mean?

  • @JC-fd8ho
    @JC-fd8ho 2 года назад +1

    why do u need html templates can't u just use a regular html file that displays a form and post the data from there

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

      Not if you create a server app with something like Node.Js. Normally a web server takes a request and just returns an HTML file and then everything else happens in your browser. With a server app the server has to call a function that renders the html form on the server and then returns the response so everything happens in the server. That is why you can do things with those apps you could only otherwise do with a server like hold small databases and write values to them.