如何在三元表达式中的字符串内插* ngFor变量? (角度)

时间:2019-05-28 14:55:54

标签: angular interpolation ngfor

我尝试过的事情:

  <mat-step *ngFor="let name of names" [label]="name" [completed]="name + 'IsCompleted'">
    <button mat-button (click)="redirectToNameUrl(name)" mat-raised-button color="primary">
  {{ (inProgress ? 'In progress...' : "'Sign in with ' + name + 'details!'" )}}
    </button>
  </mat-step>

注意:嵌套把手似乎也不起作用。

结果:

显示'Sign in with ' + name + 'details!'

的按钮

我希望它说:

Sign in with james details!

谢谢

1 个答案:

答案 0 :(得分:2)

就这样尝试

  local_auth: ^0.4.0+1

您不需要在文本周围使用多余的双引号