最初の選択オプションを選択していないとき、2番目の選択オプションと入力値を無効にするにはどうすればよいですか?私の場合、最初の選択肢は「成分の選択」です。私は "Select Ingredient"のイベントを持っており、購読してその結果が成功すれば、2番目の選択オプションと入力値を有効にする必要がありますか?ここでは、私が作ったstackblitzコードです。最初選択オプションが角度4で選択されていないときに2番目の選択オプションを無効にする
https://stackblitz.com/edit/angular-rgxfsa?file=app/app.component.ts
onSelectIngredient(event): void {
const ingredient_id = this.productForm.get('ingredient_id').value
// this.subscription = this.ingredientService.selectIngredient(ingredient_id)
// .subscribe(
// (data:any) => {
// this.ingredient = data;
// },
// error => {
// console.log(error);
// })
}
ありがとうございました – Joseph