我如何有条件地添加一个元素属性,例如复选框的复选?
以前版本的Angular有NgAttr和NgChecked,它们似乎都提供了我想要的功能。然而,这些属性在Angular 2中似乎不存在,而且我也找不到其他方法来提供这个功能。
我如何有条件地添加一个元素属性,例如复选框的复选?
以前版本的Angular有NgAttr和NgChecked,它们似乎都提供了我想要的功能。然而,这些属性在Angular 2中似乎不存在,而且我也找不到其他方法来提供这个功能。
当前回答
内联地图也很方便。
它们也更加明确和易读。
[class]="{ 'true': 'active', 'false': 'inactive', 'true&false': 'some-other-class' }[ trinaryBoolean ]"
只是完成同样的事情的另一种方式,以防你不喜欢三元语法或ngif(等)。
其他回答
如果你需要精确检查,最好使用property而不是attribute,并为它分配一些布尔值:
<input type="checkbox" [checked]="smth">
如果你想有条件地添加任意属性,你可以使用binding对它:
<p [attr.data-smth]="smth">
如果该值为undefined或未添加null属性。 如果值为空字符串,则添加属性时不带值。 否则,属性将使用字符串化值添加。
当然,您可以将它与attr一起使用。检查:
<input type="checkbox" [attr.checked]="smth ? '' : null">
但请注意,在这种情况下,attr与被检查是不同步的,所以下面的组合
<input type="checkbox" [checked]="false" [attr.checked]="''">
将导致属性为选中的未选中复选框。
一个完整的例子:
import { Component } from "@angular/core";
@Component({
selector: "app-root",
template: `
<p [attr.data-smth]="e">The value is: {{what(e)}}</p>
<p [attr.data-smth]="s">The value is: {{what(s)}}</p>
<p [attr.data-smth]="u">The value is: {{what(u)}}</p>
<p [attr.data-smth]="n">The value is: {{what(n)}}</p>
<p [attr.data-smth]="t">The value is: {{what(t)}}</p>
<p [attr.data-smth]="f">The value is: {{what(f)}}</p>
<input type="checkbox" [checked]="t">
<input type="checkbox" [checked]="f">
<input type="checkbox" [attr.checked]="t ? '' : null">
<input type="checkbox" [attr.checked]="f ? '' : null">
<input type="checkbox" [checked]="false" [attr.checked]="''">
`,
styles: [`
p[data-smth] {
color: blue;
}
`]
})
export class AppComponent {
e = ""
s = "abc"
u = undefined
n = null
t = true
f = false
what(x) {
return typeof x === 'string' ? JSON.stringify(x) : x + ""
}
}
这就是结果:
标记:
你可以用这个。
< span [attr.checked] = " val吗?True: false"> </span> . span
我想有工具提示只为一个特定的字段添加如下代码,但你想有工具提示在多,你可以有一个数组验证使用:
具有自定义data-tooltip属性的多个元素:
1:包括(键)
2: ['key1ToHaveTooltip', 'key2ToHaveTooltip'].indexOf(key) > -1
在多个元素上有工具提示属性。
<div *ngFor="let key of Keys"
[attr.data-tooltip]="key === 'IwantOnlyThisKeyToHaveTooltipAttribute'
? 'Hey! I am a tooltip on key matched'
: null">
</div>
在angular-2属性语法中是
<div [attr.role]="myAriaRole">
将属性role绑定到表达式myAriaRole的结果。
所以可以用like
[attr.role]="myAriaRole ? true: null"
对于为已经存在的scss编写HTML的人,可以使用更好的方法。 超文本标记语言
[attr.role]="<boolean>"
scss
[role = "true"] { ... }
这样你就不需要<boolean> ?True:每次都为空。