如何在 ckeditor 5 中解决 Angular 编辑器外部的注释

问题描述 投票:0回答:1

如何在 ckeditor 5 中解析编辑器外部的注释,同时解析注释注释未删除的注释。

angular ckeditor5
1个回答
0
投票

试试这个

constructor(private readonly commentsRepository: CommentsRepository) {}

ngOnInit() {
this.commentsRepository.on('resolveCommentThread', (event) => {
  const annotation = event.annotation;
  annotation.remove();
});
}
© www.soinside.com 2019 - 2024. All rights reserved.