gpt4 book ai didi

angular - 条件运算符不适用于 ngStyle

转载 作者:行者123 更新时间:2023-12-04 16:46:55 25 4
gpt4 key购买 nike

我正在学习有关 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 是真还是假,我都明白了:

Save button

控制台看起来像这样:

console

我不明白为什么这行不通!三元运算符条件似乎没有任何区别。我的语法错了吗?我直接从教程中复制它,它似乎在其他情况下有效?

最佳答案

canSave 应该是 bool 值而不是字符串这个:

 canSave   = false;

不是那个

 canSave   = 'false';

关于angular - 条件运算符不适用于 ngStyle,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46584514/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com