Angular Tutorial - 24 - Wildcard Route and Redirecting Routes

  Рет қаралды 285,217

Codevolution

Codevolution

Күн бұрын

Пікірлер: 61
@erinrivera7697
@erinrivera7697 6 жыл бұрын
Thank you for all your Angular videos. You are an excellent teacher! I've been through so many videos about Angular 2/5 and you are the first person to actually explain concepts in a clear and concise manner. Thanks again!
@zabiullahahmadi6281
@zabiullahahmadi6281 5 жыл бұрын
checkout mosh hamadani's tutorials also
@mrrishiraj88
@mrrishiraj88 3 жыл бұрын
I second with @Erin Highbaugh. Vishwas is an amazing teacher, explaining otherwise dreadful concepts with love, care and focus.
@ATeluguNerd
@ATeluguNerd 5 жыл бұрын
For latest versions, assign this to routes array [ { path: '', pathMatch: 'full', redirectTo: '' }, {path: 'departments', component: DepartmentListComponent}, {path: 'employees', component: EmployeeListComponent}, {path: "**", component: PageNotFoundComponent} ]
@annapurnaseelam5324
@annapurnaseelam5324 5 жыл бұрын
Thanks for that!!
@malavikagopinath788
@malavikagopinath788 4 жыл бұрын
Thank you 🙏
@mrrishiraj88
@mrrishiraj88 3 жыл бұрын
For path:'', it may be more convenient to redirectTo:'firstSectionOfWebApp' Or not?
@ashmusic621
@ashmusic621 2 жыл бұрын
Works! Thank you.😃
@shreyareddy3059
@shreyareddy3059 Жыл бұрын
Thanks!
@HK-sw3vi
@HK-sw3vi 4 жыл бұрын
this guy be gifted in his teaching methods: clear and concise...
@simonemeloni7967
@simonemeloni7967 5 жыл бұрын
For the updated versions the routes must be added in the following precise order: const routes: Routes = [ {path: '', pathMatch: 'full', redirectTo: ''}, {path: 'departments', component: DepartmentListComponent}, {path: 'employees', component: EmployeeListComponent}, {path: '**', component: PageNotFoundComponent} ]; otherwise it puts the string "Page Not Found" in the "home" page localhost: 4200, instead of typing localhost: 4200 / test as the tutorial says.
@RCPN
@RCPN 5 жыл бұрын
is there any difference between {path: '', pathMatch: 'full', redirectTo: ''} and {path: ''", pathMatch: 'full', redirectTo: '"'} because for me the latter worked.
@kogantieswar5240
@kogantieswar5240 4 жыл бұрын
Thank you , it works
@itz_curiouscompass
@itz_curiouscompass 2 жыл бұрын
Thanks it's working fine now
@mrrishiraj88
@mrrishiraj88 3 жыл бұрын
Gratitude for all your effort, care and knowledge.
@ankurpandey7343
@ankurpandey7343 4 жыл бұрын
redirectTo : '/department' ----->>>> redirectTo : 'department' WORKED FOR ME
@ariaalex9067
@ariaalex9067 5 жыл бұрын
you are the best ive been suffering to learn these things for days
@shyama5612
@shyama5612 4 жыл бұрын
Beautiful explanation of path match. Thank you Vishwas. I've seen many tutorials, not one of them explained the order and the match prefix/full.
@dskundan
@dskundan 3 жыл бұрын
Thank you Sir, you are excellent... keep up the great work!
@yogeshttiwari2666
@yogeshttiwari2666 6 жыл бұрын
wildcard route works but, error-page content always visible on the home page. And this only on the home page whenever I redirect it to another page like employee-list or departments then the only page's content visible but as soon as I redirect on the homepage error-page content reflects again How to fix it...??? Please answer
@MichalRutz
@MichalRutz 5 жыл бұрын
add -> {path: "", pathMatch: 'full', redirectTo: ""},
@MrBdoleagle
@MrBdoleagle 4 жыл бұрын
great video! you made it very clear and easy to understand. thanks~
@anilmaurya55
@anilmaurya55 6 жыл бұрын
You are awesome. Please carry on.
@Juznik1389
@Juznik1389 6 жыл бұрын
You are a code/explanation god
@mohanbalasubramani
@mohanbalasubramani 7 жыл бұрын
Awesome tutorial!!! .helps me a lot :) Thank you.
@ioanabondoc3844
@ioanabondoc3844 4 жыл бұрын
sorry, I have a question - how in the PageNotFound component you could overwrite all page in order to appear only the 'not found' message, and not also the 2 buttons?
@costagmc1
@costagmc1 2 жыл бұрын
wonderful explanation. Still After 4 years.
@jeganmuthu6962
@jeganmuthu6962 5 жыл бұрын
instead showing error message on same page how to navigate to show only error message in new page without employee buttons and department buttons
@mudrakpatel7468
@mudrakpatel7468 6 жыл бұрын
How do I set the default route to be the home page i.e. localhost:4200/ ?
@dailyproviders5606
@dailyproviders5606 6 жыл бұрын
{path : '', redirectTo: '', pathMatch:'full'}
@klaasvg
@klaasvg 4 жыл бұрын
Great tutorial series. I noticed one thing, leaving out the import routingComponents from the app.module.ts has no effect on the application. And commenting out the line: //export const routingComponents = [DepartmentListComponent, EmployeeListComponent]; from app-routing.moules.ts neither, the application still works normally.
@kirthimedia5235
@kirthimedia5235 3 жыл бұрын
Very good catch..
@adnankhuwaja1234
@adnankhuwaja1234 3 жыл бұрын
yeah right
@syn-eewong8460
@syn-eewong8460 6 жыл бұрын
Thank you for your videos!
@chagantisubhash
@chagantisubhash 6 жыл бұрын
Great explanation!!
@entertainmentofficial3671
@entertainmentofficial3671 2 жыл бұрын
Hi sir, while creating component getting below errors PS D:\Study\Medical> ng g c NewMedical -is -it Error: Unknown argument: i
@ai.aspirations
@ai.aspirations 5 жыл бұрын
pretty tutorial thanks much Vishwas
@HolyHarmonyOfficial
@HolyHarmonyOfficial 6 жыл бұрын
really great! clearly and effective
@sagarmukherjee
@sagarmukherjee 4 жыл бұрын
Hi, what to put in redirectTo for paths like # which does not redirect to anywhere?
@ritsk4338
@ritsk4338 6 жыл бұрын
Then where we can use prefix value ?
@nikokodzhabashev807
@nikokodzhabashev807 6 жыл бұрын
AMAZING! THANK U!
@sreyahepsiba4525
@sreyahepsiba4525 5 жыл бұрын
Very nice lecture
@Cupofshake
@Cupofshake 6 жыл бұрын
Hello, how can I implement that role based navigation. E.g. If user has not logged in, cannot access into routes. If I try to enter any route directory, it redirects into login page..
@mayankk2800
@mayankk2800 5 жыл бұрын
Are these videos still good for Angular 6+??? Angular 7??
@harsh55
@harsh55 5 жыл бұрын
yes
@prasunkumarchatterjee3488
@prasunkumarchatterjee3488 6 жыл бұрын
I have one question. What is the use of prefix?
@mohammadrezarahimi1979
@mohammadrezarahimi1979 6 жыл бұрын
would it be possible to enable auto generating caption in video 24 to 29
@HongKimhia
@HongKimhia 5 жыл бұрын
Thanks very much
@yogeshpatidar9822
@yogeshpatidar9822 7 жыл бұрын
Hey can you please make video on internationalization
@tylerfranklin8363
@tylerfranklin8363 6 жыл бұрын
You are great.
@yevgenylevin8381
@yevgenylevin8381 6 жыл бұрын
Are you have a courses on Udemy??
@umutacer01
@umutacer01 6 жыл бұрын
can you please open auto-subtitles ?
@AhamedKabeer-wn1jb
@AhamedKabeer-wn1jb Жыл бұрын
Thank you..
@gururajmoger8649
@gururajmoger8649 7 жыл бұрын
please do sidemenu and navigation menus.
@trendingtopics3362
@trendingtopics3362 3 жыл бұрын
Marvelous
@dulanjayachathura2444
@dulanjayachathura2444 6 жыл бұрын
thankz
@seenuvasanv
@seenuvasanv 7 жыл бұрын
Thanks.
@kidoo1567
@kidoo1567 10 ай бұрын
5:10
@sonzkinzminzhoangz3333
@sonzkinzminzhoangz3333 3 жыл бұрын
problem with sub in this video
@MULAGURA
@MULAGURA 7 жыл бұрын
i guess no difference from Angular 4
@17001045jv
@17001045jv 6 жыл бұрын
Subtitles plz
Angular Tutorial - 25 - Route Parameters
9:56
Codevolution
Рет қаралды 379 М.
Angular Tutorial - 23 - Routing and Navigation
12:51
Codevolution
Рет қаралды 932 М.
Каха и дочка
00:28
К-Media
Рет қаралды 3,4 МЛН
Quilt Challenge, No Skills, Just Luck#Funnyfamily #Partygames #Funny
00:32
Family Games Media
Рет қаралды 55 МЛН
Angular Tutorial - 20 - HTTP and Observables
7:41
Codevolution
Рет қаралды 679 М.
CanActivate Route Guard - Angular (Tutorial #24)
11:58
Nisha Singla
Рет қаралды 39 М.
Angular Tutorial - 26 - paramMap Observable
6:37
Codevolution
Рет қаралды 226 М.
Angular Tutorial - 27 - Optional Route Parameters
7:41
Codevolution
Рет қаралды 181 М.
Angular Resource API - Everything You Have To Know (so far)
27:58
Decoded Frontend
Рет қаралды 17 М.
Angular Tutorial - 21 - Fetch Data Using HTTP
8:36
Codevolution
Рет қаралды 795 М.
Angular 19 is a BEAST of a release!
19:39
Maximilian Schwarzmüller
Рет қаралды 50 М.
Dynamic Component in Angular (2024)
17:48
Decoded Frontend
Рет қаралды 28 М.
Microservices with Databases can be challenging...
20:52
Software Developer Diaries
Рет қаралды 110 М.
Каха и дочка
00:28
К-Media
Рет қаралды 3,4 МЛН