응답: Angular 2 노선 변경 맨 위로 스크롤 응답: Angular 2 노선 변경 맨 위로 스크롤
응답: 각도 2 경로 변경 시 위로 스크롤
2016년 9월 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
이 문제에 관하여(응답: Angular 2 노선 변경 맨 위로 스크롤 응답: Angular 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
이 문제에 관하여(응답: Angular 2 노선 변경 맨 위로 스크롤 응답: Angular 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.)