历史可以追溯到Angular 7中吗?

时间:2019-03-20 18:19:08

标签: angular angular7 browser-history

如果Angular 7中存在,我想回到历史吗?*
我使用了以下内容:

  import { Location } from '@angular/common';

    constructor(private location: Location) {

  }

    get isBackHistoryExist(): boolean {
    return window.history.length > 1;
  }
  back(): void {
    this.location.back();
  }

但是window.history.length > 1总是正确的!

0 个答案:

没有答案