将ngFor循环的最后一个元素滚动到视图中

时间:2018-05-07 06:26:03

标签: javascript html angular

我的用户可以在滚动列表的底部添加条目。但是,添加条目时滚动条不会自动向下移动,因此用户无法看到新添加的条目。如何让我的滚动条始终保持在最向下滚动的位置以显示最新的条目(使用Angular 5)?

1 个答案:

答案 0 :(得分:2)

您可以通过设置焦点将新条目滚动到视图中,如this stackblitz所示。

  • 如果项元素具有tabindex属性
  • ,则可以对其进行聚焦
  • 他们还应该拥有样式属性outline: none(以移除焦点轮廓)
  • 应在项目元素(例如#commentDiv
  • 上设置模板引用变量
  • 使用ViewChildrenQueryList.changes事件
  • 监控对列表的更改
  • 当检测到列表上的更改时,焦点将设置在列表的最后一个元素

<强> HTML:

<textarea [(ngModel)]="newComment"></textarea>
<div>
    <button (click)="addComment()">Add comment to list</button>
</div>
<div>
  Comments
</div>
<div class="list-container">
    <div tabindex="1" #commentDiv class="comment-item" *ngFor="let comment of comments">
        {{ comment }}
    </div>
</div>

<强> CSS:

div.list-container {
  height: 150px; 
  overflow: auto;
  border: solid 1px black;
}

div.comment-item {
  outline: none;
}

<强>代码:

import { Component, ViewChildren, QueryList, ElementRef, AfterViewInit } from '@angular/core';
...    
export class AppComponent {

  @ViewChildren("commentDiv") commentDivs: QueryList<ElementRef>;

  comments = new Array<string>();
  newComment: string = "Default comment content";

  ngAfterViewInit() {
    this.commentDivs.changes.subscribe(() => {
      if (this.commentDivs && this.commentDivs.last) {
        this.commentDivs.last.nativeElement.focus();
      }
    });
  }

  addComment() {
    this.comments.push(this.newComment);
  }
}