アングル2はルート変更の答えにトップにスクロール

1114 ワード

アンサー2はルート変更の上にスクロールします


Sep 20
398

ルート変更リスナーをメインコンポーネントに登録することができます.
import { Component, OnInit } from '@angular/core';
import { Router, NavigationEnd } from '@angular/router';

@Component({
    selector: 'my-app',
    template: '<ng-content></ng-content>',
})
export class MyAppComponent implements OnInit {
    constructor(private router: Router) { }

    ngOnInit()
...
Open Full Answer