要在Angular 6中在评论部分下显示评论,可以使用以下步骤:
import { Component } from '@angular/core';
@Component({
selector: 'app-comment',
templateUrl: './comment.component.html',
styleUrls: ['./comment.component.css']
})
export class CommentComponent {
comments: string[] = [];
newComment: string;
addComment() {
this.comments.push(this.newComment);
this.newComment = '';
}
}
Comments
- {{ comment }}
Add a Comment
这是一个简单的示例,仅用于演示目的。您可以根据自己的需求对评论组件进行扩展和修改。