アングル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
Reference
この問題について(アングル2はルート変更の答えにトップにスクロール), 我々は、より多くの情報をここで見つけました
https://dev.to/rnagarajan96/answer-angular-2-scroll-to-top-on-route-change-ecf
テキストは自由に共有またはコピーできます。ただし、このドキュメントのURLは参考URLとして残しておいてください。
Collection and Share based on the CC Protocol
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()
Reference
この問題について(アングル2はルート変更の答えにトップにスクロール), 我々は、より多くの情報をここで見つけました https://dev.to/rnagarajan96/answer-angular-2-scroll-to-top-on-route-change-ecfテキストは自由に共有またはコピーできます。ただし、このドキュメントのURLは参考URLとして残しておいてください。
Collection and Share based on the CC Protocol