我的用户可以在滚动列表的底部添加条目。但是,添加条目时滚动条不会自动向下移动,因此用户无法看到新添加的条目。如何让我的滚动条始终保持在最向下滚动的位置以显示最新的条目(使用Angular 5)?
答案 0 :(得分:2)
您可以通过设置焦点将新条目滚动到视图中,如this stackblitz所示。
tabindex
属性outline: none
(以移除焦点轮廓)#commentDiv
)ViewChildren
和QueryList.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);
}
}