I am not joking, this is the best angular tutorial video I have ever seen. Everything very clear and straight to the point
@MonsterlessonsAcademy2 ай бұрын
Glad you like it!
@tobalhenriquez82334 ай бұрын
You are the best!! I will buy one of these courses for sure!!
@MonsterlessonsAcademy4 ай бұрын
Glad you like my content!
@shahnawazk4 ай бұрын
Great video and very much helpful, Keep it up!
@MonsterlessonsAcademy4 ай бұрын
Will do
@advance51894 ай бұрын
Very helpful. Thanks!
@MonsterlessonsAcademy4 ай бұрын
Glad it was helpful!
@Time-mv8oo3 ай бұрын
What an amazing video. Thank you very much i really learned alot!
@MonsterlessonsAcademy3 ай бұрын
Glad it was helpful!
@manojv28934 ай бұрын
This is great way of reading data from dynamic parameters and query parameters. Previously we had to subscribe in order to get the data. Love your content. Thank you Also i had taken up your ngrx course on udemy. But now i think we need a refresh of the same as we now have signal stores 😅😅
@MonsterlessonsAcademy4 ай бұрын
Glad it was helpful! Signal store is not global therefore we can't replace ngrx store with it. It is suitable for organazing local signals for comp.
@Pankecal-v4k4 ай бұрын
Great video. Thanks so much :)
@MonsterlessonsAcademy4 ай бұрын
Glad it was helpful!
@bartlomiejuminski4 ай бұрын
19:44 I would like to see how to use async resolver to load data from the API, based on route paramater.
@onlybsj25 күн бұрын
Very cool and nice content, for real!!! can you expecify the angular version in description ? TNX
@MonsterlessonsAcademy22 күн бұрын
You can check the attached source code and see the Angular version in package.json.
@onlybsj21 күн бұрын
@@MonsterlessonsAcademy sorry mate i'm layzier than my routes
@07bakabaka4 ай бұрын
amazing content
@MonsterlessonsAcademy4 ай бұрын
Glad to hear that!
@AriaMoradi-z1z2 ай бұрын
Amazing content! but i have a question.. In Angular 18, we use input to get parameters and we no longer need ActivatedRoute?
@MonsterlessonsAcademy2 ай бұрын
In most cases no
@jxndwlАй бұрын
Extremely helpful video to understand routing in Angular, I watched 5 times. The only confusing me is router-outlet is a directive instead of a component?
@MonsterlessonsAcademyАй бұрын
Yes it's a directive
@Ferminmolinuevo4 ай бұрын
Amazing!!!
@MonsterlessonsAcademy4 ай бұрын
Thanks
@xEnergyGamingHD4 ай бұрын
can angular also infer the queryParams when the route component is a module? Or does this only work for standalone components?
@ВячеславПолуботько4 ай бұрын
Angular can infer queryParams for both module-based components and standalone components. The way queryParams are handled is independent of whether the component is part of a module or is a standalone component.
@MonsterlessonsAcademy4 ай бұрын
Yes. And additionally in this case it's just a plain component where router feeds params from either params, query or data. You can even use this comp without router.
@wilco8864 ай бұрын
Could you share your vscode profile/config, looks nice
@MonsterlessonsAcademy4 ай бұрын
I covered it here kzbin.info/www/bejne/oqeum4Z4l7aLrtUsi=zHnipazX6VvJvO5E
@OCEMTechZone4 ай бұрын
Great
@MonsterlessonsAcademy4 ай бұрын
Thanks
@mrluckyuncle4 ай бұрын
How does the “input” signal return different values?
@MonsterlessonsAcademy4 ай бұрын
What do you means by return? Angular router passed properties from data, params and query params. If you have such input, you will get a value.
@mrluckyuncle4 ай бұрын
@@MonsterlessonsAcademy Sorry I wasn't clear. Maybe this is a dumb question but the right-hand side of the equal sign is the same in these two lines, and yet pageId and limit are different: pageId = input.required(); limit = input.required(); How is this possible?
@VinodSalunke-t7x4 ай бұрын
am getting this compilation issue while using redirectTo Type '(routes: any) => string' is not assignable to type 'string'. below is my code for it { path:'old-pages/:pageId', redirectTo: (routes)=>{ return `/pages/${routes.params['pageId']}`; }, },
@MonsterlessonsAcademy4 ай бұрын
Are you on the older Angular version? Then routerTo function doesn't exist.