Angular - Как удалить элемент после уничтожения компонента
Я следую приведенному выше решению, но не могу правильно отобразить css.
Он возвращает мне [объектный модуль] , а не содержимое css, когда я добавляю:
component.ts
this.styleService.addStyle('usergrid1css', require('../../../assets/css/clr.css'));
html
<style>[object module]</style>
Кто-нибудь может мне в этом помочь?
Заранее спасибо!
chrome devtools image
code below extracted from the url above
import { Injectable } from '@angular/core';
@Injectable()
export class StyleService {
private stylesMap: Map<any, Node> = new Map();
private host: Node;
constructor() {
this.host = document.head;
}
private createStyleNode(content: string): Node {
console.log('style');
const styleEl = document.createElement('style');
styleEl.textContent = content;
return styleEl;
}
addStyle(key: any, style: string): void {
const styleEl = this.createStyleNode(style);
this.stylesMap.set(key, styleEl);
this.host.appendChild(styleEl);
}
removeStyle(key: any): void {
const styleEl = this.stylesMap.get(key);
if (styleEl) {
this.stylesMap.delete(key);
this.host.removeChild(styleEl);
}
}
}
**component.ts**
import { Component, OnInit, ViewEncapsulation } from '@angular/core';
import { FormGroup, FormBuilder, Validators, FormControl } from '@angular/forms';
import { concat, merge, Observable, of, Subject } from 'rxjs';
import { catchError, debounceTime, distinctUntilChanged, switchMap, tap, map } from 'rxjs/operators';
import { StyleService } from '../../services/style.service';
declare function require(name: string): any;
@Component({
selector: 'app-user',
templateUrl: './user.component.html',
styleUrls: ['./user.component.css']
})
export class UserComponent implements OnInit {
constructor(private fb: FormBuilder,
private styleService: StyleService) {
}
ngOnInit() {
this.styleService.addStyle('usergrid1css', require('./clr.css'));
}