gpt4 book ai didi

Angular 4字符串参数

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

我对为什么我的输入参数被转换成数字有点困惑。我有这个组件:

import { Component, OnInit, Input } from '@angular/core';

@Component({
selector: 'app-tile',
templateUrl: './tile.component.html',
styleUrls: ['./tile.component.css']
})
export class TileComponent implements OnInit {
@Input() icon1: string;
@Input() headerText1: string;
@Input() mainText: string;
@Input() footerText: string;

constructor() { }

ngOnInit() {
}

}

和模板:

<div class="widget widget-stats bg-green">
<div *ngIf="icon1" class="stats-icon"><i class="fa {{icon1}}"></i></div>
<div class="stats-info">
<h4>Header - {{headerText1}}</h4>
<p>Icon - {{icon1}}</p>
<p>Main - {{mainText}}</p>
<p>Footer - {{footerText}}</p>
</div>
</div>

从另一个组件传递这些 this 是可行的:

<app-tile [headerText1]="43543" [mainText]="123456" [footerText]="243542354235" [icon1]="999"></app-tile>

但我想要这个:

<app-tile [headerText1]="TOTAL VISITORS" [mainText]="93%" [footerText]="243542354235" [icon1]="fa-users"></app-tile>

headerText1 在编译时失败,因为有一个空格,如果我删除它,该值将永远不会显示并且 icon1 显示 NaN。

当我明确将它们定义为字符串时,为什么它们会被视为数字?

最佳答案

如果我正确理解你的问题,要传递字符串文字,请尝试在双引号内添加单引号,表达式,如下所示:

<app-tile [headerText1]="'TOTAL VISITORS'" [mainText]="'93%'"

关于Angular 4字符串参数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47683085/

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