作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在学习有关 Angular4 ngStyle 的教程。
我有以下代码:
app.component.html
<button
[ngStyle]="{
'backgroundColor': canSave ? 'blue': 'gray',
'color': canSave ? 'white': 'black',
'fontWeight': canSave ? 'bold': 'normal'
}"
>
Save
</button>
app.component.ts
import { Component } from '@angular/core';
@Component({
selector: 'app-root',
templateUrl: './app.component.html',
styleUrls: ['./app.component.css']
})
export class AppComponent {
canSave = 'false';
}
无论 canSave 是真还是假,我都明白了:
控制台看起来像这样:
我不明白为什么这行不通!三元运算符条件似乎没有任何区别。我的语法错了吗?我直接从教程中复制它,它似乎在其他情况下有效?
最佳答案
canSave 应该是 bool 值而不是字符串这个:
canSave = false;
不是那个
canSave = 'false';
关于angular - 条件运算符不适用于 ngStyle,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46584514/
我是一名优秀的程序员,十分优秀!