angular – 如何回到最后一页

前端之家收集整理的这篇文章主要介绍了angular – 如何回到最后一页前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
有没有一种聪明的方法可以回到Angular 2的最后一页?

就像是

this._router.navigate(LASTPAGE);

例如,页面C有一个Go Back按钮,

>页面A – >页面C,单击它,返回到页面A.
>第B页 – >页面C,单击它,返回到页面B.

路由器有这个历史信息吗?

实际上,您可以利用内置的位置服务,该服务拥有“后退”API。

这里(打字稿):

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

@Component({
// component's declarations here
})
class SomeComponent {
    constructor(private _location: Location) {
    }
    backClicked() {
        this._location.back();
    }
}
原文链接:https://www.f2er.com/angularjs/144065.html

猜你在找的Angularjs相关文章