Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Angular 2: Cannot find name 'Subscription'

When trying to set the type of an attribute I get the error Cannot find name 'Subscription'. From which package do I import it from?

import { Component, OnDestroy, OnInit } from '@angular/core';
import { ActivatedRoute, Router } from '@angular/router';

// I'm missing an import here. Just don't know which package to load from.

@Component({
  moduleId: module.id,
  selector: 'my-component',
  templateUrl: 'my.component.html',
  styleUrls: ['my.component.css']
})
export class MyComponent implements OnInit, OnDestroy {

  private sub: any;

  constructor(private route: ActivatedRoute,
    private router: Router) {}

  ngOnInit() {
    this.sub = this.route.params.subscribe(params => {
       let id = +params['id']; // (+) converts string 'id' to a number
     });
  }

  ngOnDestroy() {
    this.sub.unsubscribe();
  }

}

Edit: Provide a more detailed code example.

like image 732
Ole Spaarmann Avatar asked Aug 17 '16 13:08

Ole Spaarmann


3 Answers

You have to import it like this:

import { Subscription } from 'rxjs';

ORIGINAL ANSWER

import { Subscription } from 'rxjs/Subscription';

Take a look here: https://angular.io/docs/ts/latest/guide/router.html and there are several plunker's linked in that documentation.

like image 157
slaesh Avatar answered Nov 06 '22 16:11

slaesh


in angular 6 and angular 7

import { Subscription } from 'rxjs';
like image 32
unos baghaii Avatar answered Nov 06 '22 16:11

unos baghaii


You have to import Subscription from "rxjs/Rx".

import { Subscription } from "rxjs/Rx";
like image 5
Kamil Myśliwiec Avatar answered Nov 06 '22 16:11

Kamil Myśliwiec