Angular 2:在销毁时从动态创建的组件中删除CSS

时间:2017-05-30 20:37:34

标签: angular dynamic components

当我销毁动态创建的组件时,如何删除添加到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类。

0 个答案:

没有答案