Author -  Sai gowtham

Passing data to routes in angular

In this tutorial, we are going to learn about how to pass the data to angular routes.

In angular, we can pass the data to a route by using data object and access that data inside components by using ActivatedRoute.

Passing data to route

{path: "post", component : PostComponent,data: {msg: "Welcome" }}

In the above code, we passed data to a post route by using the data object data: {msg: "Welcome" }.

Accessing data inside components

post.component.ts
import { Component, OnInit } from '@angular/core';
import { ActivatedRoute } from '@angular/router';
@Component({
  selector: 'app-post',
  templateUrl: './post.component.html',
  styleUrls: ['./post.component.css']
})
export class PostComponent implements OnInit {

  mymsg: string;
  constructor(private route: ActivatedRoute) { }

  ngOnInit() {
    this.route.data.subscribe((data) => {      this.mymsg = data.msg;    });  }}

In the above component, we first imported ActivatedRoute from the @angular/router package and injected it to PostComponent constructor.

ActivatedRoute: It helps us to access the currently loaded route data.

Inside ngOnInit method we are accessing the data object by subscribing it and updating the mymsg property.

data.msg where msg property is the same we passed to that route.

Css Tutorials & Demos

How rotate an image continuously in CSS

In this demo, we are going to learn about how to rotate an image continuously using the css animations.

How to create a Instagram login Page

In this demo, i will show you how to create a instagram login page using html and css.

How to create a pulse animation in CSS

In this demo, i will show you how to create a pulse animation using css.

Creating a snowfall animation using css and JavaScript

In this demo, i will show you how to create a snow fall animation using css and JavaScript.

Top Udemy Courses

JavaScript - The Complete Guide 2023 (Beginner + Advanced)
JavaScript - The Complete Guide 2023 (Beginner + Advanced)
116,648 students enrolled
52 hours of video content
$14.99 FROM UDEMY
React - The Complete Guide (incl Hooks, React Router, Redux)
React - The Complete Guide (incl Hooks, React Router, Redux)
631,582 students enrolled
49 hours of video content
$24.99 FROM UDEMY
Vue - The Complete Guide (w/ Router, Vuex, Composition API)
Vue - The Complete Guide (w/ Router, Vuex, Composition API)
203,937 students enrolled
31.5 hours of video content
$14.99 FROM UDEMY