当我销毁动态创建的组件时,如何删除添加到DOM的所有CSS类。
创建组件(将组件的CSS类添加到DOM):
const componentFactory = this.componentFactoryResolver.resolveComponentFactory(component)
const componentRef = componentFactory.create(this.injector)
销毁组件
componentRef.destory()
// I need the CSS Classes which were added to the DOM to be destroyed as well
我无法手动删除它们,因为我不知道CSS类是什么;因此,我需要删除绑定该组件创建的所有CSS类。