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.
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.
in angular 6 and angular 7
import { Subscription } from 'rxjs';
You have to import Subscription from "rxjs/Rx".
import { Subscription } from "rxjs/Rx";
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With