hash routing in angular code example
Example 1: HashLocationStrategy
export const routing = RouterModule.forRoot(routes, { useHash: true });
import { enableProdMode } from '@angular/core';
if (<condition to enable production mode>) {
enableProdMode();
}
Example 2: angular navigate using component
import {Router} from '@angular/router';
export class Component{
constructor(private route:Router){}
go(){
this.route.navigate(['/page']);
}
}
Example 3: router params angular
this.router.navigate(['/users/edit/', user.id]);