回答:
更新
これは現在サポートされています
<a [routerLink]="['somepath']" fragment="Test">Jump to 'Test' anchor </a>
this._router.navigate( ['/somepath', id ], {fragment: 'test'});
以下のコードをコンポーネントに追加してスクロールします
import {ActivatedRoute} from '@angular/router'; // <-- do not forget to import
private fragment: string;
constructor(private route: ActivatedRoute) { }
ngOnInit() {
this.route.fragment.subscribe(fragment => { this.fragment = fragment; });
}
ngAfterViewInit(): void {
try {
document.querySelector('#' + this.fragment).scrollIntoView();
} catch (e) { }
}
元の
これは既知の問題であり、https://github.com/angular/angular/issues/6595で追跡されます
01
か100
、無効であることに注意してください。有効なセレクターにするために、文字などを追加したい場合があります。だから、あなたはまだ通過する01
フラグメントとして、しかし、id
のようなものである必要があるd01
ため、document.querySelector('#d'+id)
一致します。
がギュンターの答えが正しいか、それはアンカータグ部「へのジャンプ」をカバーしていません。
したがって、さらに:
<a [routerLink]="['somepath']" fragment="Test">Jump to 'Test' anchor </a>
this._router.navigate( ['/somepath', id ], {fragment: 'test'});
...「ジャンプ」動作が必要なコンポーネント(親)に、以下を追加します。
import { Router, NavigationEnd } from '@angular/router';
class MyAppComponent {
constructor(router: Router) {
router.events.subscribe(s => {
if (s instanceof NavigationEnd) {
const tree = router.parseUrl(router.url);
if (tree.fragment) {
const element = document.querySelector("#" + tree.fragment);
if (element) { element.scrollIntoView(true); }
}
}
});
}
}
これは回避策であることに注意してください!今後のアップデートについては、このgithubの問題をフォローしてください。ソリューションを提供してくれたVictor Savkinの功績です!
"['../faq']"
は、値として指定する必要があります。そうしないと、/ faq /#anchorの代わりに/ faq / faq /#anchorにジャンプしようとします。これは正しい方法ですか、それともrouterlinkの現在のページを参照するよりエレガントな方法がありますか?また、document.querySelector("#" + tree.fragment);
有効でないセレクタエラーが表示されます。これは正しいですか?ありがとう
<a [routerLink]="['/faq']" fragment="section6">
か?
少し遅く答えてすみません。Angular Routing Documentationには、ハッシュタグをページアンカーにルーティングするための事前定義された関数があります。つまり、 anchorScrolling: 'enabled'です。
ステップ-1:-最初にルーターモジュールをapp.module.tsファイルにインポートします:-
imports:[
BrowserModule,
FormsModule,
RouterModule.forRoot(routes,{
anchorScrolling: 'enabled'
})
],
ステップ-2:-HTMLページに移動し、ナビゲーションを作成し、[routerLink]のような2つの重要な属性と、それぞれのDiv IDを照合するためのフラグメントを追加します。
<ul>
<li> <a [routerLink] = "['/']" fragment="home"> Home </a></li>
<li> <a [routerLink] = "['/']" fragment="about"> About Us </a></li>
<li> <a [routerLink] = "['/']" fragment="contact"> Contact Us </a></li>
</ul>
ステップ-3: -ID 名とフラグメントを照合してセクション/ divを作成します:-
<section id="home" class="home-section">
<h2> HOME SECTION </h2>
</section>
<section id="about" class="about-section">
<h2> ABOUT US SECTION </h2>
</section>
<section id="contact" class="contact-section">
<h2> CONTACT US SECTION </h2>
</section>
参考までに、問題の解決に役立つ小さなデモを作成して、以下の例を追加しました。
scrollPositionRestoration: 'enabled',
:) anchorScrollingオプションの下に
少し遅れましたが、ここで私が見つけた答えはうまくいきます:
<a [routerLink]="['/path']" fragment="test" (click)="onAnchorClick()">Anchor</a>
そしてコンポーネントでは:
constructor( private route: ActivatedRoute, private router: Router ) {}
onAnchorClick ( ) {
this.route.fragment.subscribe ( f => {
const element = document.querySelector ( "#" + f )
if ( element ) element.scrollIntoView ( element )
});
}
上記のコードは、アンカーのあるページに既に到達しても自動的にビューにスクロールしないため、ngInitで上記のソリューションを使用して、それでも動作するようにしました。
ngOnInit() {
this.router.events.subscribe(s => {
if (s instanceof NavigationEnd) {
const tree = this.router.parseUrl(this.router.url);
if (tree.fragment) {
const element = document.querySelector("#" + tree.fragment);
if (element) { element.scrollIntoView(element); }
}
}
});
}
コンポーネントの最初にルーター、アクティブ化ルート、ナビゲーション終了を必ずインポートしてください。問題なく動作するはずです。
document.querySelector ( "#" + f )
は文字列ではなくセレクターを想定しているため、エラーになります。
element.scrollIntoView()
渡さなくelement
ても)。スムーズにするには、これを使用しますelement.scrollIntoView({block: "end", behavior: "smooth"})
。
onAnchorClick()
で、ブール値をscrollIntoView:に渡す必要があることを示していますif (element) { element.scrollIntoView(true); }
。これで、同じリンクを2回クリックして、作品をスクロールできます
以前の答えはどれも私にとってはうまくいきませんでした。最後の努力で、私は自分のテンプレートで試しました:
<a (click)="onClick()">From Here</a>
<div id='foobar'>To Here</div>
これで私の.tsに:
onClick(){
let x = document.querySelector("#foobar");
if (x){
x.scrollIntoView();
}
}
そして、それは内部リンクに対して期待通りに機能します。これは実際にはアンカータグを使用しないため、URLにはまったく影響しません。
上記の解決策は私にはうまくいきませんでした...これはそれでうまくいきました:
まず、ngAfterViewChecked()MyAppComponent
で自動スクロールの準備をします...
import { Component, OnInit, AfterViewChecked } from '@angular/core';
import { ActivatedRoute } from '@angular/router';
import { Subscription } from 'rxjs';
@Component( {
[...]
} )
export class MyAppComponent implements OnInit, AfterViewChecked {
private scrollExecuted: boolean = false;
constructor( private activatedRoute: ActivatedRoute ) {}
ngAfterViewChecked() {
if ( !this.scrollExecuted ) {
let routeFragmentSubscription: Subscription;
// Automatic scroll
routeFragmentSubscription =
this.activatedRoute.fragment
.subscribe( fragment => {
if ( fragment ) {
let element = document.getElementById( fragment );
if ( element ) {
element.scrollIntoView();
this.scrollExecuted = true;
// Free resources
setTimeout(
() => {
console.log( 'routeFragmentSubscription unsubscribe' );
routeFragmentSubscription.unsubscribe();
}, 1000 );
}
}
} );
}
}
}
次に、ハッシュタグのmy-app-route
送信に移動しますprodID
import { Component } from '@angular/core';
import { Router } from '@angular/router';
@Component( {
[...]
} )
export class MyOtherComponent {
constructor( private router: Router ) {}
gotoHashtag( prodID: string ) {
this.router.navigate( [ '/my-app-route' ], { fragment: prodID } );
}
}
他のすべての回答は、Angularバージョン<6.1で機能します。ただし、最新バージョンを入手している場合は、Angularが問題を修正しているため、これらの醜いハックを行う必要はありません。
メソッドのscrollOffset
2番目の引数のオプションを設定するだけで済みますRouterModule.forRoot
。
@NgModule({
imports: [
RouterModule.forRoot(routes, {
scrollPositionRestoration: 'enabled',
anchorScrolling: 'enabled',
scrollOffset: [0, 64] // [x, y]
})
],
exports: [RouterModule]
})
export class AppRoutingModule {}
これを次のルータモジュールに使用しますapp-routing.module.ts
。
@NgModule({
imports: [RouterModule.forRoot(routes, {
useHash: true,
scrollPositionRestoration: 'enabled',
anchorScrolling: 'enabled',
scrollOffset: [0, 64]
})],
exports: [RouterModule]
})
これはあなたのHTMLになります:
<a href="#/users/123#userInfo">
htmlファイル:
<a [fragment]="test1" [routerLink]="['./']">Go to Test 1 section</a>
<section id="test1">...</section>
<section id="test2">...</section>
tsファイル:
export class PageComponent implements AfterViewInit, OnDestroy {
private destroy$$ = new Subject();
private fragment$$ = new BehaviorSubject<string | null>(null);
private fragment$ = this.fragment$$.asObservable();
constructor(private route: ActivatedRoute) {
this.route.fragment.pipe(takeUntil(this.destroy$$)).subscribe(fragment => {
this.fragment$$.next(fragment);
});
}
public ngAfterViewInit(): void {
this.fragment$.pipe(takeUntil(this.destroy$$)).subscribe(fragment => {
if (!!fragment) {
document.querySelector('#' + fragment).scrollIntoView();
}
});
}
public ngOnDestroy(): void {
this.destroy$$.next();
this.destroy$$.complete();
}
}
Kalyoyanの回答に加えて、このサブスクリプションはルーターに関連付けられており、ページが完全に更新されるまで有効です。コンポーネントでルーターイベントをサブスクライブする場合は、必ずngOnDestroyでサブスクライブを解除してください:
import { OnDestroy } from '@angular/core';
import { Router, NavigationEnd } from '@angular/router';
import { Subscription } from "rxjs/Rx";
class MyAppComponent implements OnDestroy {
private subscription: Subscription;
constructor(router: Router) {
this.subscription = router.events.subscribe(s => {
if (s instanceof NavigationEnd) {
const tree = router.parseUrl(router.url);
if (tree.fragment) {
const element = document.querySelector("#" + tree.fragment);
if (element) { element.scrollIntoView(element); }
}
}
});
}
public ngOnDestroy() {
this.subscription.unsubscribe();
}
}
私は自分のウェブサイトでこれを機能させたばかりなので、ここに私の解決策を投稿する価値があると考えました。
<a [routerLink]="baseUrlGoesHere" fragment="nameOfYourAnchorGoesHere">Link Text!</a>
<a name="nameOfYourAnchorGoesHere"></a>
<div>They're trying to anchor to me!</div>
そして、あなたのコンポーネントに、これを含めることを確認してください:
import { ActivatedRoute } from '@angular/router';
constructor(private route: ActivatedRoute) {
this.route.fragment.subscribe ( f => {
const element = document.querySelector ( "#" + f )
if ( element ) element.scrollIntoView ( element )
});
}
element.scrollIntoView()
or と書くだけの方がいいと思いますelement.scrollIntoView(true)
。あなたのバージョンは私のためにコンパイルされませんでした(おそらくstrictNullChecksのためですか?)。
すべてのソリューションを読んだ後、コンポーネントを探したところ、元の質問で要求されていたとおりに機能するコンポーネントを見つけました。https://www.npmjs.com/package/ng2-scroll-to
インストールするときは、次のような構文を使用します。
// app.awesome.component.ts
@Component({
...
template: `...
<a scrollTo href="#main-section">Scroll to main section</a>
<button scrollTo scrollTargetSelector="#test-section">Scroll to test section</a>
<button scrollTo scrollableElementSelector="#container" scrollYTarget="0">Go top</a>
<!-- Further content here -->
<div id="container">
<section id="main-section">Bla bla bla</section>
<section id="test-section">Bla bla bla</section>
<div>
...`,
})
export class AwesomeComponent {
}
それは私には本当にうまくいきました。
クエリパラメータのないページで機能するシンプルなソリューションは、ブラウザのバック/フォワード、ルーター、ディープリンクに準拠しています。
<a (click)="jumpToId('anchor1')">Go To Anchor 1</a>
ngOnInit() {
// If your page is dynamic
this.yourService.getWhatever()
.then(
data => {
this.componentData = data;
setTimeout(() => this.jumpToId( window.location.hash.substr(1) ), 100);
}
);
// If your page is static
// this.jumpToId( window.location.hash.substr(1) )
}
jumpToId( fragment ) {
// Use the browser to navigate
window.location.hash = fragment;
// But also scroll when routing / deep-linking to dynamic page
// or re-clicking same anchor
if (fragment) {
const element = document.querySelector('#' + fragment);
if (element) element.scrollIntoView();
}
}
タイムアウトは、ページが* ngIfによって「保護された」動的データをロードできるようにするだけです。これは、ルートを変更するときにページの上部にスクロールする場合にも使用できます。デフォルトの上部アンカータグを指定するだけです。
これらの要素IDをURLに追加する必要がない場合は、次のリンクを検討することを検討してください。
// html
// add (click) event on element
<a (click)="scroll({{any-element-id}})">Scroll</a>
// in ts file, do this
scroll(sectionId) {
let element = document.getElementById(sectionId);
if(element) {
element.scrollIntoView(); // scroll to a particular element
}
}
JavierFuentesの回答を参照する別の回避策を次に示します。
<a [routerLink]="['self-route', id]" fragment="some-element" (click)="gotoHashtag('some-element')">Jump to Element</a>
スクリプトで:
import {ActivatedRoute} from "@angular/router";
import {Subscription} from "rxjs/Subscription";
export class Links {
private scrollExecuted: boolean = false;
constructor(private route: ActivatedRoute) {}
ngAfterViewChecked() {
if (!this.scrollExecuted) {
let routeFragmentSubscription: Subscription;
routeFragmentSubscription = this.route.fragment.subscribe(fragment => {
if (fragment) {
let element = document.getElementById(fragment);
if (element) {
element.scrollIntoView();
this.scrollExecuted = true;
// Free resources
setTimeout(
() => {
console.log('routeFragmentSubscription unsubscribe');
routeFragmentSubscription.unsubscribe();
}, 0);
}
}
});
}
}
gotoHashtag(fragment: string) {
const element = document.querySelector("#" + fragment);
if (element) element.scrollIntoView(element);
}
}
これにより、URLにハッシュタグが含まれているページに直接アクセスした場合に、要素に直接スクロールできます。
しかし、この場合、私はルートフラグメントをサブスクライブしましngAfterViewChecked
たngAfterViewChecked()
が、毎回継続的に呼び出され、ngDoCheck
ユーザーが上にスクロールして戻ることができないため、routeFragmentSubscription.unsubscribe
、ビューが要素にスクロールされてから0ミリ秒のタイムアウト後に呼び出されます。
さらに gotoHashtag
、ユーザーが具体的にアンカータグをクリックしたときに要素にスクロールするメソッドが定義されています。
更新:
URLにクエリ文字列がある場合[routerLink]="['self-route', id]"
、アンカーではクエリ文字列は保持されません。私は同じために次の回避策を試しました:
<a (click)="gotoHashtag('some-element')">Jump to Element</a>
constructor( private route: ActivatedRoute,
private _router:Router) {
}
...
...
gotoHashtag(fragment: string) {
let url = '';
let urlWithSegments = this._router.url.split('#');
if(urlWithSegments.length){
url = urlWithSegments[0];
}
window.location.hash = fragment;
const element = document.querySelector("#" + fragment);
if (element) element.scrollIntoView(element);
}
これは私のために働く!このngForは動的にタグをアンカーするため、レンダリングが完了するまで待つ必要があります
HTML:
<div #ngForComments *ngFor="let cm of Comments">
<a id="Comment_{{cm.id}}" fragment="Comment_{{cm.id}}" (click)="jumpToId()">{{cm.namae}} Reply</a> Blah Blah
</div>
私のtsファイル:
private fragment: string;
@ViewChildren('ngForComments') AnchorComments: QueryList<any>;
ngOnInit() {
this.route.fragment.subscribe(fragment => { this.fragment = fragment;
});
}
ngAfterViewInit() {
this.AnchorComments.changes.subscribe(t => {
this.ngForRendred();
})
}
ngForRendred() {
this.jumpToId()
}
jumpToId() {
let x = document.querySelector("#" + this.fragment);
console.log(x)
if (x){
x.scrollIntoView();
}
}
それをインポートすることを忘れないでくださいViewChildren
、QueryList
そしていくつかのコンストラクタを追加してくださいActivatedRoute
!!
他の回答とは異なり、私はさらに追加focus()
しscrollIntoView()
ます。またsetTimeout
、URLを変更すると先頭にジャンプするため、使用しています。その理由はよくわかりませんが、setTimeout
が、回避策はあるです。
原点:
<a [routerLink] fragment="some-id" (click)="scrollIntoView('some-id')">Jump</a>
先:
<a id="some-id" tabindex="-1"></a>
タイプスクリプト:
scrollIntoView(anchorHash) {
setTimeout(() => {
const anchor = document.getElementById(anchorHash);
if (anchor) {
anchor.focus();
anchor.scrollIntoView();
}
});
}
同じ問題がありました。解決策:ビューポートスクローラーを使用する https://angular.io/api/common/ViewportScroller#scrolltoanchor
-app-routing.module.tsコード:
import { PageComponent } from './page/page.component';
const routes: Routes = [
path: 'page', component: PageComponent },
path: 'page/:id', component: PageComponent }
];
-コンポーネントHTML
<a (click) = "scrollTo('typeExec')">
<mat-icon>lens</mat-icon>
</a>
-コンポーネントのコード:
import { Component } from '@angular/core';
import { ViewportScroller } from '@angular/common';
export class ParametrageComponent {
constructor(private viewScroller: ViewportScroller) {}
scrollTo(tag : string)
{
this.viewScroller.scrollToAnchor(tag);
}
}
nmp- ngx-scroll-toで利用できる非常に便利なプラグインをテストしました。ただし、Angular 4+用に設計されていますが、おそらく誰かがこの答えが役に立つと思うでしょう。
私はこれらの解決策のほとんどを試しましたが、それが機能しない別のフラグメントを残して戻ってくると問題が発生したので、100%機能する少し異なることを行い、URLの醜いハッシュを取り除きました。
tl; drこれは、私がこれまで見てきた方法よりも良い方法です。
import { Component, OnInit, AfterViewChecked, OnDestroy } from '@angular/core';
import { ActivatedRoute } from '@angular/router';
import { Subscription } from 'rxjs/Subscription';
@Component({
selector: 'app-hero',
templateUrl: './hero.component.html',
styleUrls: ['./hero.component.scss']
})
export class HeroComponent implements OnInit, AfterViewChecked, OnDestroy {
private fragment: string;
fragSub: Subscription;
constructor(private route: ActivatedRoute) { }
ngOnInit() {
this.fragSub = this.route.fragment.subscribe( fragment => { this.fragment = fragment; })
}
ngAfterViewChecked(): void {
try {
document.querySelector('#' + this.fragment).scrollIntoView({behavior: 'smooth'});
window.location.hash = "";
} catch (e) { }
}
ngOnDestroy() {
this.fragSub.unsubscribe();
}
}
123
ルートパスパラメータのような期待と仮定問題であるが){ path: 'users/:id', ....}