1. // app.component.html
    2. <button (click)="jump()">跳转到发展历史</button>
    1. // app.component.ts
    2. import { Router } from "@angular/router"
    3. export class AppComponent {
    4. constructor(private router: Router) { }
    5. jump() {
    6. this.router.navigate(["/news"], {
    7. queryParams: {
    8. name: "Kitty"
    9. }
    10. })
    11. }
    12. }