Angular Parent Child Communication - Pass Your Data Correctly

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

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

  • @MonsterlessonsAcademy
    @MonsterlessonsAcademy  4 ปีที่แล้ว

    WATCH NEXT: Angular Interview Questions and Answers - Dominate Your Next Interview - th-cam.com/video/5A_YKlVWMPo/w-d-xo.htmlsi=2DCn7yspEAAJ2H6l

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

    Thanks a lot, nice one again

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

    I was looking for a good angular resource to learn and luckily found your channel Thank you........

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

    Great video!

  • @serhiitachuk
    @serhiitachuk 4 ปีที่แล้ว

    Thanks! Very useful video

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

    Gracias !!

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

    is it possible to have the advanced course for free ? thanks

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

      No as the point of advanced courses to sell them.

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

      @@MonsterlessonsAcademy it is good pace/speed. keep up the good job. thank you for sharing your valuable knowledge and time.

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

    Hi, i thought it's better to put the function in the child component rather than the parent component?

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

      Hi, it depends on what you want to achieve. Most often we want to do smart parents with business logic and dumb children without any logic.

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

    Thank You. But I think you need to increase your speed a bit.

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

      I will try to improve it but as I'm not a native speaker it's the best what I can :)

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

      do it like me in settings playback speed *2

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

    Why using vim tho?

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

    No sound

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

      I hear it just fine.

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

      @@MonsterlessonsAcademy there is no sound. I'm from india. Is this video audio restricted?.
      Can you create a new one. Thanks

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

      @@parasjoshi5509 Nothing is restricted. You are the first person who has problem with audio in my video so it looks like the problem is on your side.

  • @artem_zakharchuk
    @artem_zakharchuk 9 หลายเดือนก่อน

    user-list.component.ts
    Member 'users' implicitly has an 'any' type.
    if I create user.ts
    export type User = {
    id: string;
    name: string;
    age: number;
    }
    and change @Input at user-list.component.ts as below:
    @Input() users!: User[];
    everything works.
    But if I took away the exclamation mark then I received the message:
    Property 'users' has no initializer and is not definitely assigned in the constructor.
    What does it mean in case of @Input? We have to initiialize it somehow?

    • @syed-rayan2410
      @syed-rayan2410 3 หลายเดือนก่อน

      Even I am having same doubt, Artem !