© 2026 LinearBytes Inc.
Search posts, tags, users, and pages
Binayak Choudhary
MEAN Stack Enthu
I have written this:
window.history.back();
Is there any alternative to it? In router navigation. (angular 2+)
Heithem Moumni
Software engineer
import {Location} from '@angular/common'; export class MyComponent { // inject location into component constructor constructor(private location: Location) { } cancel() { this.location.back(); // <-- go back to previous location on cancel } ...
Heithem Moumni
Software engineer
import {Location} from '@angular/common'; export class MyComponent { // inject location into component constructor constructor(private location: Location) { } cancel() { this.location.back(); // <-- go back to previous location on cancel } ...