Hi Leela, I have been listening your videos and content for angular. All are explained clearly and nicely. So much content you are explaining even in short length of videos. Thanks and we are grateful having person like you for your efforts and helping us to learn and grow. Question: ngOnit will get exceuted once right? then how you are users xomponent is getting updated when we add or edit since we are using compinent variable in template right?
THANK YOU SO MUCH SIR🙏 i was stuck on how to save the data collected using form in a service then using that data in other component. YOUR VIDEOS ARE A LIFESAVER.
Hi Leela,
I have been listening your videos and content for angular. All are explained clearly and nicely. So much content you are explaining even in short length of videos. Thanks and we are grateful having person like you for your efforts and helping us to learn and grow.
Question: ngOnit will get exceuted once right? then how you are users xomponent is getting updated when we add or edit since we are using compinent variable in template right?
Great respect
Good video! I can see the hard work put into all the videos.
Yes! Thank you!
Nice videos Leela
very good explanation sir I a following your course
Really Awesome explanation Leela. i like to way of explanation. keep Rock...
THANK YOU SO MUCH SIR🙏 i was stuck on how to save the data collected using form in a service then using that data in other component.
YOUR VIDEOS ARE A LIFESAVER.
imp concept..very well
explained *****
Awesome!
Thanks!
What happens if we declare in the provider for app module and then inside another module of the app modules? Would it share the same instance?
but what about if you have a feature module providing the service in the feature module
is it mandatory to write the service in providers? what happens if we didn't provide in providers? can we still use it??
You can use but dependency injection misses
@@LeelaWebDev Thanks for the reply. what is the meaning of using
@Injectable({
providedIn: 'root'
})
This is the short form for adding service directly in app module
@@LeelaWebDev ok..thanks
explain the same example using services generated through CLi. Also why have you used providers in APP.componentt.ts instead of app.module.ts
I am showing as an example that we can inject in the component level also
@@LeelaWebDev I tried it , I provided instance at module level and try to use that instance in component level
But it still takes same instance why ?