沒有進口的OnInit並實現爲什麼重要的是要導入的OnInit
ngOnInit(){
this.recipies=this.recipeService.getRecipies();
}
這仍然工作正常,沒有任何抱怨,爲什麼我應該使用 ,如:
import { Component,EventEmitter,Output , OnInit } from '@angular/core';
export class RecipiesListComponent implements OnInit{}