10
ข้อผิดพลาด Angular @ViewChild (): คาดว่าจะมีข้อโต้แย้ง 2 ข้อ แต่ได้รับ 1
เมื่อลองใช้ 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 …
249
angular
typescript