Lorsque j'essaie ViewChild, j'obtiens l'erreur suivante. L'erreur est "Un argument pour 'opts' n'a pas été fourni".
Les deux @ViewChild donnent l'erreur.
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) : error TS2554 : Expected 2 arguments, but got 1.
0 votes
Qu'y a-t-il à la ligne 11 ?
0 votes
@TonyNgo @ViewChild('nameInput') nameInputRef : ElementRef ;