gpt4 book ai didi

angular - 如何显示文字跟随 Angular 色?

转载 作者:行者123 更新时间:2023-12-04 07:55:01 26 4
gpt4 key购买 nike

我想在编写函数时在编辑页面上显示文本的标题。
应用程序.html

<div class="header content">
<h5 *ngIf="getRoleEditPage()">
<i class="fas fa-edit"></i>
{{ text }}
</h5>
</div>
应用程序.ts
  getRoleEditPage() {
let text: string
if (this.user.roles.customer === true) {
text = `Customer's Edit Ticket`
} else if (this.user.roles.supporter === true) {
text = `Supporter's Edit Ticket`
} else if (this.user.roles.maintenance === true) {
text = `Maintenance's Edit Ticket`
} else if (this.user.roles.supervisor === true) {
text = `Supervisor's Edit Ticket`
} else if (this.user.roles.developer === true) {
text = `Developer's Edit Ticket`
}
return text
}

最佳答案

您需要绑定(bind) getRoleEditPage 的结果,如下(使用别名):

<div class="header content">
<h5 *ngIf="getRoleEditPage() as text">
<i class="fas fa-edit"></i>
{{ text }}
</h5>
</div>

关于angular - 如何显示文字跟随 Angular 色?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/66742337/

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