我在我的 .less css 文件中使用伪类选择器来更改选择产品时的背景颜色。
:host(.selected .message) {
background: blue;
}
它适用于 ng build JIT,但不适用于 AOT。当我检查 chrome 中的元素时,JIT 构建:
.selected[_nghost-c16] .message[_ngcontent-c16]{
background: #8f5f0
}
对于 AOT 构建:
.selected.message[_nghost-c16]{
background: #8f5f0
}
AOT 错误地解释 :host。我做错了什么?