私は自分のプロジェクトを整理しようとしていますが、フォームgroupeを使用しています。コンポーネントが混乱しています。別のクラスにフォームビルダーを配置する方法があるかどうかを知りたい私の主なコンポーネントの中でそれを呼び出す。
私はリアクティブフォームを使用しています。
私はそのすべてが
がフォームを別のファイルに配置する方法4
コンストラクタ(民間のhttp:HTTP、プライベート_filterService:FiltreAdvancedSearchService)ありがとう宣言避けるためにしようとしている{ this.loading =はtrue。
this._filterService.getAllData().subscribe(res => {
this.Recherche = res;
this.loading = false;
this.status = 304;
}, err => {
this.status = err.status;
console.log(this.status)
});
this.SearchForm = new FormGroup({
start_date: new FormControl('', [Validators.required ]),
end_date: new FormControl('', [Validators.required ]),
n_doc: new FormControl('', [ Validators.pattern('^[0-9]+$') ]),
pw: new FormControl('', [Validators.pattern('^[0-9]+$') ]),
li: new FormControl('', [Validators.pattern('^[0-9]+$') ]),
fac: new FormControl('', [Validators.pattern('^[0-9]+$') ]),
cont: new FormControl('', [Validators.pattern('/^[a-zA-Z]$/') ]),
type: new FormControl(this.types),
cat: new FormControl(this.categories),
immat: new FormControl(),
ser: new FormControl(''),
mod: new FormControl(''),
en: new FormControl(this.energies),
client_num: new FormControl(),
client_nom: new FormControl(),
reg: new FormControl(),
});
}
それはあなたのコードが – umar