1
<select class="form-control" formControlName="recipe_ingredient">
          <option value="">Select Ingredient</option>
          <option *ngFor="let ingredient of ingredients | async" [value]="ingredient.id" [selected]="ingredient.id == ri.ingredient">
           {{ingredient.id}}-{{ingredient.name}}
          </option>

ri.ingredient = 2; ただし、以下は上記のコードで true を返さないため、値は選択されていません

ingredient.id == ri.ingredient 

誰でもご案内できますか

私の ts ファイルのコードは次のとおりです。

editRecipeForm() {
    this.editrecipeForm = this.fb.group({
      recipe_name: ['', Validators.required ],
      recipe_description: ['', Validators.required ],
      edit_recipe_image: [],
      ingredients11: this.fb.array([
         this.getIngredient()
      ])
   });
  } 12:49 
getIngredient() {
    return this.fb.group({
     recipe_ingredient: ['', Validators.required ],
      recipe_ingredient_quantity: ['', Validators.required ]
    });
  } 
4

1 に答える 1