Angular 8をフロントエンドで使用し、Laravel=バックエンドで使用しています。入力テキストフィールドとドロップダウンがあるフォームを取得しています。リスト。テキスト入力フィールドの値はTypeScriptファイルで適切にキャプチャされていますが、問題がありますドロップダウンリストから選択された値のキャプチャバックエンドで送信できるようにしています。
〜親切に支援しますか?
Create.component.html
<form #createForm=ngForm (ngSubmit)="onSubmit()">
<div class="form-group row">
<div class="col-sm-6">
<label for="formGroupExampleInput">Child SurName</label>
<input
type="text"
name="childSurName"
class="form-control"
id="childSurName"
placeholder="ChildSurName"
[(ngModel)]="form.childSurName">
</div>
<div class="col-sm-6">
<label for="child-gender">Child Gender</label>
<select class="form-control" id="childGender" name="child-gender" required>
<option value="" selected disabled> Child's Gender</option>
<option value="Male"> Male</option>
<option value="Female"> Female </option>
</select>
</div>
</div>
<div class="form-group row">
<div class="col-sm-12">
<button
type="submit"
class="btn btn-lg btn-success btn-block"
[disabled]="!createForm.valid">Save Details </button>
</div>
</div>
</form>
Create.component.ts
import { Component, OnInit } from '@angular/core';
import { AuthService } from 'src/app/Services/auth.service';
import { Router } from '@angular/router';
import { AuthCheckService } from 'src/app/Services/auth-check.service';
@Component({
selector: 'app-create',
templateUrl: './create.component.html',
styleUrls: ['./create.component.css']
})
export class CreateComponent implements OnInit {
public form = {
childSurName: null,
child-gender: null
};
public error = null;
constructor(
private Auth:AuthService,
private router: Router,
private AuthCheck : AuthCheckService)
{ }
//Submit form data to the backend via a function in he service file
onSubmit(){
this.Auth.submitFormData(this.form).subscribe(
data => console.log(data),
error => console.log(error)
);
}
ngOnInit() {
}
}
以下を<select>
に追加します
[(ngModel)]="form.childGender"
また、一貫性を保つために、フォームのキーの名前を次のように変更します。
public form = {
childSurName: null,
childGender: null
};
これは、同じように動作する stackblitz です。 (送信時にフォームのみがコンソールに記録されていることに注意してください)
[(ngModel)]
ディレクティブがselect
要素にないようです。