Friday, 15 January 2021

Angular 6 - Get current route and it's data

 How to get current route you're in and get's it's data, children and it's parent?say if this is the route structure:const routes: Routes = [    {path: 'home', component: HomeComponent, data: {title: 'Home'}},    {      path: 'about',       component: AboutComponent,       data: {title: 'About'},      children: [        {          path: 'company',          component: 'CompanyComponent',          data: {title: 'Company'}        },        {          path: 'Hr',          component: 'HrComponent',          data: {title: 'HR'}        },        ...      ]    },    ...  ] Below...
Continue Reading →

Thursday, 14 January 2021

Subject with Example | Angular2+

 What is a Subject?Subject is a type of Observable in RxJs Library in which we can send our data to other components or services.While Observables are unicast by design. Subjects can multicast. Multicasting basically means that one Observable execution is shared among multiple subscribers.A Subject...
Continue Reading →

Topics

ADFS (1) ADO .Net (1) Ajax (1) Angular (47) Angular Js (15) ASP .Net (14) Authentication (4) Azure (3) Breeze.js (1) C# (55) CD (1) CI (2) CloudComputing (2) Coding (10) CQRS (1) CSS (2) Design_Pattern (7) DevOps (4) DI (3) Dotnet (10) DotnetCore (20) Entity Framework (5) ExpressJS (4) Html (4) IIS (1) Javascript (17) Jquery (8) jwtToken (4) Lamda (3) Linq (10) microservice (4) Mongodb (1) MVC (46) NodeJS (8) React (10) SDLC (1) Sql Server (32) SSIS (3) SSO (1) TypeScript (3) UI (1) UnitTest (2) WCF (14) Web Api (16) Web Service (1) XMl (1)

Dotnet Guru Archives