当尝试ViewChild时,我得到了错误。错误提示:“没有为‘opts’提供参数。”

@ViewChild给出错误。

import { Component, OnInit, ElementRef, ViewChild, Output, EventEmitter } from '@angular/core';
import { Ingredient } from 'src/app/shared/ingredient.model';

@Component({
  selector: 'app-shopping-edit',
  templateUrl: './shopping-edit.component.html',
  styleUrls: ['./shopping-edit.component.css']
})
export class ShoppingEditComponent implements OnInit {

@ViewChild('nameInput') nameInputRef: ElementRef;
@ViewChild('amountInput') amountInputRef: ElementRef;
@Output() ingredientAdded = new EventEmitter<Ingredient>();
  constructor() {}

  ngOnInit() {
  }

  onAddItem() {
    const ingName = this.nameInputRef.nativeElement.value;
    const ingAmount = this.amountInputRef.nativeElement.value;
    const newIngredient = new Ingredient(ingName, ingAmount);
    this.ingredientAdded.emit(newIngredient);
  }

}

ts(11,2):错误TS2554:期望2个参数,但得到1。


当前回答

使用这个

@ViewChild(ChildDirective, {static: false}

其他回答

你应该像这样使用ViewChild的第二个参数:

@ViewChild("eleDiv", { static: false }) someElement: ElementRef;

这也解决了我的问题。

@ViewChild('map', {static: false}) googleMap;

Regex替换所有通过IDEA (Webstorm测试)

觉得:\ @ViewChild。 \('(.*)'\)

替换:\@ViewChild\('$1', \{static: true\}\)

在Angular 8中,ViewChild有另一个参数

@ViewChild('nameInput', {static: false})组件

我解决我的问题如下

@ViewChild(MatSort, {static: false}) sort: MatSort;

在Angular 8中,ViewChild接受2个参数

 @ViewChild(ChildDirective, {static: false}) Component