Add/remove fxLayout 和 fxLayoutAlign 属性有条件地

Add/remove fxLayout and fxLayoutAlign properties conditionally

我正在尝试 add/remove fxLayoutfxLayoutAlign 属性 div

<div *ngIf="name === 'A'" fxFlex="50%" fxLayout="row" fxLayoutAlign="start center"> 
...
</div>

这样的东西对我不起作用

fxLayoutAlign="myCondition? 'start center' : ''"

有什么我可以尝试的想法吗?

你需要这样使用..

[fxLayoutAlign]="someCondition ? 'start center' : ''"

演示在此 Stackblitz