【发布时间】:2017-03-06 06:46:32
【问题描述】:
我需要切换模板。 我有 12 个 css 文件需要动态加载
我有一个模板 html。例如(硬代码):
<div class="container">
<link rel='stylesheet' href="/app/switchTemplate/css/amelia/bootstrap.min.css" *ngIf="currentTheme.name === 'amelia'" />
</div>
当我使用 标记“href”时 它不起作用(动态)
<div class="container">
<link rel='stylesheet' *ngFor="let theme of themes" href="{{theme.url}}" *ngIf="currentTheme.name === '{{theme.name}}'" />
</div>
如何使用 *ngFor 在标签“href”中设置“URL”并在条件 *ngIf 中设置“{{theme.name}}”?
【问题讨论】: