#6. Create Reactive Form and save data using API | Angular save form data using POST API

แชร์
ฝัง
  • เผยแพร่เมื่อ 10 พ.ย. 2024

ความคิดเห็น • 44

  • @smitamayeedebata8234
    @smitamayeedebata8234 ปีที่แล้ว +1

    Thanks for explaining save data concept in a very simple way. I am new to angular and this video helped me.

  • @martinakuzmanovska8054
    @martinakuzmanovska8054 ปีที่แล้ว

    THANK YOU, I watched a million videos and this was the only one that helped me !

  • @johnherrera5913
    @johnherrera5913 2 ปีที่แล้ว +1

    Master!! This was so clean , precise and to the point just loved it. thankyou for making this.

  • @obasanyajanet7201
    @obasanyajanet7201 7 หลายเดือนก่อน

    Thank you so much for this
    So simple and straight forward

  • @kaarthumbi
    @kaarthumbi 11 หลายเดือนก่อน +1

    Sir i got a problem... when the form is filled it shows the data except 2 input fileds... blood group and profile pic? How can I solve this problem

  • @ghodhbaniabderrahmen5433
    @ghodhbaniabderrahmen5433 ปีที่แล้ว +2

    when I add a new object the id is not well incremented id: '5FudnAR', how can I solve it ?

  • @zeeshanahmad-tx5hw
    @zeeshanahmad-tx5hw ปีที่แล้ว

    Nice explanation... Very helpful video

  • @mayssajbali7470
    @mayssajbali7470 11 หลายเดือนก่อน

    thank you so much for this video , it was very helpful

  • @adarshdwivedi5395
    @adarshdwivedi5395 2 ปีที่แล้ว +1

    Very helpful for begginer

  • @visudanth
    @visudanth 3 หลายเดือนก่อน

    Are these codes checked in git?

  • @shwethalathasaravanan6037
    @shwethalathasaravanan6037 2 ปีที่แล้ว +1

    Is this possible to store the json form to postgresql

  • @mohiburrahman5639
    @mohiburrahman5639 2 ปีที่แล้ว

    fantastic!!!!!!!!!!!!!

  • @bluebrain7009
    @bluebrain7009 10 หลายเดือนก่อน

    Why is the ID field randomized in mine, can I ask for help?

  • @sanketdholu649
    @sanketdholu649 3 ปีที่แล้ว +1

    helpful.........

  • @alexisrivera8746
    @alexisrivera8746 ปีที่แล้ว

    what if I also have a contact number in my json file. I followed this video and tried adding contact number in my json file, but it says null every time i try to console.log it like you did in the video to test if its working

    • @LearningPointsCourses
      @LearningPointsCourses  ปีที่แล้ว

      It should work. No matter whether is contact number or some other data. Same logic.

  • @செந்தூர்முருகன்.N
    @செந்தூர்முருகன்.N 2 ปีที่แล้ว +1

    Thanks

  • @mohiburrahman5639
    @mohiburrahman5639 2 ปีที่แล้ว

    hello i have a problem. when i insert data from add student, list student did not work.table is not update. can you help me pls.

  • @thirumoorthy6835
    @thirumoorthy6835 3 ปีที่แล้ว +1

    Sir i tried this, i got 500 error , where i placed console in ts file after subscribe that.

    • @LearningPointsCourses
      @LearningPointsCourses  3 ปีที่แล้ว

      First console in service file. Make sure service is hitting properly. If inside service you got console output, then console from ts file. Console subscribed data inside closure function.

    • @thirumoorthy6835
      @thirumoorthy6835 3 ปีที่แล้ว

      Yes , i got console output in ts file and also service . File, after that i wrote subscribe code , inside subscribe i put console for checking my output is added or not

    • @thirumoorthy6835
      @thirumoorthy6835 3 ปีที่แล้ว

      And saved data is not adding in my json server database

    • @LearningPointsCourses
      @LearningPointsCourses  3 ปีที่แล้ว

      @thiru moorthy I think something you did wrong. Please check once. Without checking it is difficult to say. Make sure your json server also running.

    • @madhumitha4315
      @madhumitha4315 2 ปีที่แล้ว

      @@LearningPointsCourses I also got same error sir

  • @srujanam4185
    @srujanam4185 2 ปีที่แล้ว

    core.mjs:6485 ERROR TypeError: Cannot read properties of undefined (reading 'post') I am getting this error in console please help me

    • @LearningPointsCourses
      @LearningPointsCourses  2 ปีที่แล้ว +1

      It may be type mismatch error. Try to use specific type or if you don't know the specific type you can use any

  • @longdang8264
    @longdang8264 3 ปีที่แล้ว

    I can only post the default id field, although in the submit function I have console.log the data from the form. Can you help me?

    • @LearningPointsCourses
      @LearningPointsCourses  3 ปีที่แล้ว +1

      I need to check your code. May be it is data binding problem.

    • @longdang8264
      @longdang8264 3 ปีที่แล้ว

      @@LearningPointsCourses Thank you for your reply, I have fixed the error. It was due to my httpOptions config. ❤️

    • @LearningPointsCourses
      @LearningPointsCourses  3 ปีที่แล้ว

      @@longdang8264 Welcome ❤️

  • @nashaatmohamed9433
    @nashaatmohamed9433 2 ปีที่แล้ว

    thanks to you

  • @venkatamanne2803
    @venkatamanne2803 3 ปีที่แล้ว

    At the below line, i am getting the error "Property 'subscribe' does not exist on type 'void'"
    this.student.saveStudentData(this.addStudent.value).subscribe((result:any)=>
    Please suggest

    • @LearningPointsCourses
      @LearningPointsCourses  3 ปีที่แล้ว

      May be datatypes not matches with .ts file function. I need to see this to solve this problem.