我有两个用于ngstyle
的变量
ngStyleSmall = {
width: '150px !important',
'max-width': '150px',
};
ngStylemedium = {
width: '250px !important',
'max-width': '400px',
};
ls_style:string
ls_style="ngStyleSmall" // will be bringing from database
<mat-form-field [ngStyle]="ls_style">
<input [(ngModel)]="code" name="code" matInput placeholder="Co.">
</mat-form-field>
在html ng模型中,我想动态分配变量,它怎么可能?
答案 0 :(得分:0)