为了账号安全,请及时绑定邮箱和手机立即绑定

提交带有角度的表单到 Json 文件

提交带有角度的表单到 Json 文件

偶然的你 2021-10-29 13:55:14
我想提交我的表单并有一种方法可以用我新创建的用户更新我的表。我从今天早上就卡住了。我已经有一个删除方法但错过了创建方法这是我的 html<div class="manage-content">  <div class="title">    <mat-icon class="user-icon">how_to_reg</mat-icon>    <h3>Create a user</h3>  </div>      <form [formGroup]="form" (ngSubmit)="onSubmit()">        Value : {{form.value | json}}        <div class="form">        <div class="leftSide">        <mat-form-field class="full-width-input" appearance="outline">          <input id="firstName" matInput placeholder="First name" formControlName="f_name" #f_name>          <mat-error *ngIf="isFieldInvalid('f_name')">            The first name you've entered is malformed.          </mat-error>        </mat-form-field>        <mat-form-field class="full-width-input" appearance="outline">          <input id="middleName" matInput placeholder="Middle name" formControlName="m_name" #m_name>          <mat-error *ngIf="isFieldInvalid('m_name')">            The middle name you've entered is malformed.          </mat-error>        </mat-form-field>        <mat-form-field class="full-width-input" appearance="outline">          <input id="lastName" matInput placeholder="Last name" formControlName="l_name" #l_name>          <mat-error *ngIf="isFieldInvalid('l_name')">            The last name you've entered is malformed.          </mat-error>        </mat-form-field>        <mat-form-field class="full-width-input" appearance="outline">          <input id="email" matInput placeholder="Email" formControlName="email" #email>          <mat-error *ngIf="isFieldInvalid('email')">            The email you've entered is malformed.          </mat-error>非常感谢你的帮助
查看完整描述

2 回答

  • 2 回答
  • 0 关注
  • 115 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信