我尝试过的事情:
<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!
谢谢
答案 0 :(得分:2)
就这样尝试
local_auth: ^0.4.0+1
您不需要在文本周围使用多余的双引号