如何将数字转换为角度2组件内的字符串:
发布时间:2020-12-17 17:57:18 所属栏目:安全 来源:网络整理
导读:我有组件内部 export class AppComponent implements OnInit {public errorMsg :number =10 ;public doughnutChartOptions: any = { cutoutPercentage: 85,elements: { center: { text: this.errorMsg + ' Energy produced in the Energy',fontColor: '#fff'
我有组件内部
export class AppComponent implements OnInit { public errorMsg :number =10 ; public doughnutChartOptions: any = { cutoutPercentage: 85,elements: { center: { text: this.errorMsg + ' Energy produced in the Energy',fontColor: '#fff',fontFamily: "'Helvetica Neue','Helvetica','Arial',sans-serif",fontSize: 24,fontStyle: 'normal' } } }; } text: this.errorMsg + ' some thing', 这是一个属性接受的字符串,所以在这里我必须将数字传递给字符串,如何在angular4,typescript 2.5中执行此操作 解决方法
请试试
text: `${this.errorMsg} Energy produced in the Energy`, 注意:使用“(back-ticks)而不是”(撇号)来获取你的价值. (编辑:李大同) 【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容! |