angular2从后端配置获取组件css

时间:2018-03-28 09:13:17

标签: css angular typescript sass

有没有办法从后端配置中获取组件css?喜欢liferay

我有一个组件,此组件提供文本框供用户输入css代码。用户在texbox中输入的内容应该反映在组件中。

组件html

<div>
<h1>I am h1 tag<h1>
<h2>I am h2 tag<h2>
<div>

编辑 enter image description here

输出

enter image description here

编辑

enter image description here

输出

enter image description here

1 个答案:

答案 0 :(得分:1)

没有人这样回答我回答我自己的问题。其实这很简单。只需创建一个样式标记并应用css

<div id="dynamicStyle">
<h1>I am h1 tag<h1>
<h2>I am h2 tag<h2>
<div>

<强>组件

export class SomeComponent implements OnInit {
  color = 'red';
  ngOnInit() {
    const css = `h2 {color: green} img {background: ${this.color}`; // we can get this css from backend also
    const head = document.getElementById('dynamicStyle');
    const style = document.createElement('style');
    style.type = 'text/css';
    style.appendChild(document.createTextNode(css));
    head.appendChild(style);
  }
}