我拥有的组件内部

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',

这是属性接受的字符串,因此在这里我必须将数字传递给string,如何在angular4,typescript 2.5中做到这一点

最佳答案

请尝试

text:  `${this.errorMsg} Energy produced in the Energy`,

注意:使用``(反引号)代替''(撇号)来获取值(value)。

关于angular - 如何在 Angular 2组件:中将数字转换为字符串,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/47156237/

10-13 01:05