如果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
总是正确的!