gpt4 book ai didi

javascript - Angular :使用 ngFor 为段落设置不同的颜色

转载 作者:太空狗 更新时间:2023-10-29 18:18:32 24 4
gpt4 key购买 nike

当我点击一个按钮时,我将字符串添加到一个数组中,我需要在页面中显示这些字符串。但是我只需要在第 5 个元素之后显示红色文本(前 5 个元素应该有黑色文本)。这是我尝试过的:

组件代码:

import { Component } from '@angular/core';

@Component({
selector : 'app-toggle',
templateUrl : './toggle.component.html',
styleUrls : ['./toggle.component.css']
})
export class ToggleComponent {
toggleState = false;
clickNumber = 0;
actions = [];
action = 'Display';

onClick() {
this.clickNumber++;
this.toggleState = !this.toggleState;

if (this.toggleState) {
this.action = 'Display';
} else {
this.action = 'Hide';
}
this.actions.push('click number: ' + this.clickNumber.toString() + ', changed the state to ' + this.action);
}

getColor(): string {
if (this.clickNumber > 5) {
return 'red';
} else {
return 'black';
}
}
}

和html代码:

<button (click)="onClick()" >{{action}} details</button>
<p *ngIf="toggleState">Password details: secret</p>
<p *ngFor="let act of actions" [ngStyle]="{'color' : getColor()}">{{act}}</p>

但我的问题是,在我点击超过 5 次后,所有段落元素都会更改文本颜色。那么如何实现呢?我做错了什么?我正在使用 Angular 6。

这是我的页面的样子:

enter image description here

最佳答案

您可以像这样使用 *ngFor 的索引属性以及 ngStyle:

<p *ngFor="let act of actions; let i = index" [ngStyle]="{'color' : i > 5 ? 'red' : 'black'}">{{act}}</p>

关于javascript - Angular :使用 ngFor 为段落设置不同的颜色,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51234582/

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