我最终使用了Igor在这里提到的document令牌。
从那里,我可以将href换成样式。
HTML:
<head> <link id="theme" rel="stylesheet" href="red.css"></head>
TS:
import { Component, Inject } from '@angular/core';import { document } from '@angular/platform-browser';@Component({})export class MyClass { constructor (@Inject(document) private document) { } ngonInit() { this.document.getElementById('theme').setAttribute('href', 'blue.css'); }}


