Angular-routerLink和状态问题

时间:2019-09-30 12:46:30

标签: angular angular-routing routerlink angular-routerlink

我想从HTML页面使用routerLink和state路由到另一页面。 使用标签没有问题,在登录页面的ngOnInit期间,我可以按预期检索状态。 使用标签首页也可以导航,但是状态结果未定义。

我怎么了?

登录页面的HTML

<button routerLink="/home" [state]="navExtra.state">
    Go Home Page via button
</button>
<a routerLink="/home" [state]="navExtra.state">Go Home Page via a</a>

登录页面

import { Component, OnInit } from '@angular/core';
import { NavigationExtras } from '@angular/router';

@Component({
  selector: 'app-login',
  templateUrl: './login.page.html',
  styleUrls: ['./login.page.scss']
})
export class LoginPage implements OnInit {
  navExtra: NavigationExtras = {
    state: { data: { a: 'a', b: 'b' } }
  };
  constructor() {}

  ngOnInit() {}
}

首页

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

@Component({
  selector: 'app-home',
  templateUrl: './home.page.html',
  styleUrls: ['./home.page.scss']
})
export class HomePage implements OnInit {
  constructor(
    private router: Router
  ) {}

  ngOnInit() {
    console.log(this.router.getCurrentNavigation().extras.state);
  }
}

2 个答案:

答案 0 :(得分:3)

我认为无法通过按钮传递state。如果我们检查routerLink的源代码,就会看到...

不是一个a标签时:

@Directive({selector: ':not(a):not(area)[routerLink]'})

state未包含在extras中:

@HostListener('click')
onClick(): boolean {
  const extras = {
    skipLocationChange: attrBoolValue(this.skipLocationChange),
    replaceUrl: attrBoolValue(this.replaceUrl),
  };
  this.router.navigateByUrl(this.urlTree, extras);
  return true;
}
  

source

而当我们有一个a标签时:

@Directive({selector: 'a[routerLink],area[routerLink]'})

其中包括:

@HostListener('click', [/** .... **/])
onClick(/** .... **/): boolean {
  // .....
  const extras = {
    skipLocationChange: attrBoolValue(this.skipLocationChange),
    replaceUrl: attrBoolValue(this.replaceUrl),
    state: this.state // <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< here!
  };
  this.router.navigateByUrl(this.urlTree, extras);
  return false;
}
  

source

因此,您的选择是设置链接样式,使其看起来像一个按钮,或者在按钮单击时调用一个函数来执行导航,如其他答案所示,在这里,我指的是 AbolfazlR < / strong>:

this.router.navigate(['home'], this.navExtra);

答案 1 :(得分:1)

您可以使用click event导航到所需页面并设置状态:

<button (click)="test()">Test</button>

和组件中的测试方法:

test(){
  const navigationExtras: NavigationExtras = {state: {example: 'This is an example'}};
  this.router.navigate(['test'], navigationExtras);
}

在目标位置,您可以检索如下数据:

example:string;
constructor(private router: Router) { 
   const navigation = this.router.getCurrentNavigation();
   const state = navigation.extras.state as {example: string};
   this.example = state.example;
}

Stackblitz Here.