错误TypeError:无法设置未定义ANGULAR的属性“名称”

时间:2020-04-22 10:57:27

标签: javascript angular typescript

尝试提交我的表单时收到此错误,它过去可以正常工作,在使用其他功能一段时间后,这显然发生了。一直在寻找几个小时,还没有找到解决方案。我不知道为什么会这样,我尝试在构造函数以及ngoninit生命周期中初始化组件,但是仍然无法正常工作。我不明白为什么会发生此错误,应该一切正常,如果有人可以帮助我,我会很乐意。

这是我得到的错误;

ERROR TypeError: Cannot set property 'name' of undefined at RecipeService.searchRecipes (recipe.service.ts:43) at RecipeSearchComponent.onSubmit (recipe-search.component.ts:33) at RecipeSearchComponent_Template_form_ngSubmit_8_listener (recipe-search.component.html:10) at executeListenerWithErrorHandling (core.js:21772) at wrapListenerIn_markDirtyAndPreventDefault (core.js:21814) at SafeSubscriber.schedulerFn [as _next] (core.js:37027) at SafeSubscriber.__tryOrUnsub (Subscriber.js:183) at SafeSubscriber.next (Subscriber.js:122) at Subscriber._next (Subscriber.js:72) at Subscriber.next (Subscriber.js:49)

这是组件

import { Component, OnInit } from '@angular/core';
import { Validators, FormBuilder } from '@angular/forms';
import { RecipeService } from '../recipe.service';
import { Router } from '@angular/router';

@Component({
  selector: 'app-recipe-search',
  templateUrl: './recipe-search.component.html',
  styleUrls: ['./recipe-search.component.scss']
})
export class RecipeSearchComponent implements OnInit {


    // initilization of the form
  searchForm = this.fb.group({
    name: ["", [Validators.required, Validators.minLength(3)]],
    minCalories: ["0", Validators.required],
    maxCalories: ["1500", Validators.required]
  });

  constructor(private recipeService: RecipeService, private router: Router, private fb: FormBuilder) {
  }

  ngOnInit(): void {
  }


  // submit function that calls the searchRecipes function from the recipe service
  onSubmit() {
    const minCalories = +this.searchForm.get("minCalories").value;
    const maxCalories = +this.searchForm.get("maxCalories").value;
    const name = this.searchForm.get("name").value;
    this.recipeService.searchRecipes(1, minCalories, maxCalories, name);
    this.router.navigate(["recipes"]);
  }
}

这是html

<section class="search">
  <div class="search__box">
    <div class="search__box--wrapper">
      <h1 class="search__box--title">Search</h1>
      <p class="search__box--paragraph">We Find Your Dream Recipes</p>
    </div>
  </div>

  <div class="search__form--box">
    <form class="search__form" [formGroup]="searchForm" (ngSubmit)="onSubmit()">
      <div class="search__group search__group--title">
        <input
        placeholder="Enter Any Title..."
        class="search__input search__input--title"
        type="text"
        formControlName="name"
        required
        minlength="3"
        >

      <small
        class="search__input--title--small"
        [ngClass]="{'name--red': !searchForm['controls'].name.valid}"
        >
        Must be least 3 Characters long!
      </small>

        <label class="search__label search__label--title" for="title">Name</label>
      </div>
      <div class="search__calories--box">
        <div class="search__group search__group--calories">
          <input
          placeholder="Min Calories"
          type="number"
          class="search__input search__input--calories"
          formControlName="minCalories"
          required>
          <label class="search__label" for="minCalories">Min</label>
        </div>
        <div class="search__group search__group--calories">
          <input
          placeholder="Max Calories"
          type="number"
          class="search__input search__input--calories"
          formControlName="maxCalories"
          required
          >
          <label class="search__label" for="maxCalories">Max</label>
        </div>
      </div>
      <button type="submit" class="search__button" [disabled]="!searchForm.valid">Search</button>
    </form>
  </div>
</section>

2 个答案:

答案 0 :(得分:0)

在您的ngOnInit中尝试

    this.searchForm = this.fb.group({
    name: ["", Validators.compose([Validators.required, Validators.minLength(3)])],
    minCalories: ["0", Validators.required],
    maxCalories: ["1500", Validators.required]
  });

答案 1 :(得分:0)

我在食谱服务方面遇到问题,因此实际上与表格无关,对不起,答复很晚。感谢所有观看并尝试过的人。