如何在对象而不是字符串中存储和设置mat-input的值

时间:2019-02-04 06:04:53

标签: angular angular-material

我正在字符串中获取formGroup.get('Style').值,但是我需要作为对象。

<div class="form-group">
  <mat-form-field class="full-width">
    <input matInput formControlName="Style" placeholder="{{'Style'}}" type="any">
  </mat-form-field>
</div>

我想在对象中获取matInput的值,而不是字符串。对于前。如果我输入type =“ number”并在matInput中输入值2,则表单控件会将值2存储为数字。同样,如果我在matInput中编写{'background-color':'#4a90e2','margin-left':10},formControl应该将此值存储为Object而不是字符串

0 个答案:

没有答案