Angular 17 CRUD with Local-Storage | angular 17 tutorial

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

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

  • @mfarooqwasi
    @mfarooqwasi 8 месяцев назад +4

    A good start for the Angular beginners. Thanks for your effort. 😀

  • @andrewii23
    @andrewii23 7 месяцев назад +3

    Bro 15:45 touched me so much yeah like what you say try to write the code on my own this is really my weak point that make me struggle to learn i always copy without knowing what it useful

  • @asfandyar_ali
    @asfandyar_ali 8 месяцев назад

    Excellent video for the beginners. Can't thank enough. Great work bro.

  • @FrancoisKABORE-or3su
    @FrancoisKABORE-or3su 3 месяца назад

    Thank you very much for your nice explanations .

  • @asfandyar_ali
    @asfandyar_ali 8 месяцев назад

    Dear Chetan. A quick question/guidance! Do you have video on CRUD with Mock APIs for us to learn and practice? Would greatly appreciate if you can guide us.

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

    The best video of the world!!!

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

    Sir, can you please show how to divide this one component into different components.

  • @TechzenVibes
    @TechzenVibes 3 месяца назад +1

    I noticed that when I press the delete button only the last item is deleted not the item which we require to be deleted. So, I made this change it worked
    onDelete(item: Student) {
    const isDelet = confirm('Are you sure want to Delete');
    if (isDelet) {
    const currentRecord = this.studentList.findIndex(
    (m) => m.id === item.id
    );
    if (currentRecord !== -1) {
    this.studentList.splice(currentRecord, 1);
    localStorage.setItem('angular17crud', JSON.stringify(this.studentList));
    }
    }
    }

  • @hebaahmed-p1l
    @hebaahmed-p1l 4 месяца назад

    Thank you for the video

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

    I am facing an issue while using local storage it says that local storage is not lteset

  • @hexadecimalhexadecimal5241
    @hexadecimalhexadecimal5241 8 месяцев назад

    nice vid, would you consider make a mobile responsive portfolio? thanks

  • @Justchill799
    @Justchill799 Месяц назад

    Thanks
    🤩

  • @trandinhthang4337
    @trandinhthang4337 8 месяцев назад

    Hello bro, Thanks for your video!
    I have a question.
    I don't see you install Bootstrap and Fontawesome. I tried cloning your repo and running in my local computer. An error occurred
    angular:styles/global:styles:1:8:
    ✘ [ERROR] Could not resolve "./node_modules/bootstrap/dist/css/bootstrap.min.css"
    ✘ [ERROR] Could not resolve "./node_modules/@fortawesome/fontawesome-free/css/all.min.css"
    Thanks. Have a good day

    • @LearningPartnerDigital
      @LearningPartnerDigital  8 месяцев назад

      Yes..you can install to that..in my system I had reusable nodemodules folder

    • @kerrykilian9127
      @kerrykilian9127 16 дней назад

      npm install bootstrap
      npm install @fortawesome/fontawesome-free

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

    Could you please cover one vedio with validation part

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

    viewchild ka error nhi ja rha hai help me plz

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

    This has many flaws, first of all the delete function only deletes the last item. secondly after deleting the ID is repeat for new entries hence making update function break. good tutorial but i wish logic was ecplained properly

  • @naparajput7101
    @naparajput7101 27 дней назад

    Sir can u provide the css

  • @trandinhthang4337
    @trandinhthang4337 8 месяцев назад

    Thanks bro

  • @vilaskiran266
    @vilaskiran266 8 месяцев назад

    Thanks sir

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

    thanks

  • @joseantonioamayapostigo2542
    @joseantonioamayapostigo2542 8 месяцев назад

    Hello, good morning, I have followed the tutorial and I get an error in the part of the @viewChild('myModal') decorator, and I can't get rid of the error or remove it, I can't follow you. I'm sorry.

  • @dipalimali7180
    @dipalimali7180 8 месяцев назад

    Sir, please marathimdhe suddha courses launch kara

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

    Why don't u use Reactive form 😶

  • @collectorschannel373
    @collectorschannel373 8 месяцев назад

    your domain mini project its not working