Guest User

Untitled

a guest
Oct 21st, 2017
390
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. recipesList:Recipe[];
  2.  
  3.  
  4. private recipes;
  5. constructor(private shoppingService:ShoppingListService,private http:Http){
  6. this.getRecipesFromUrl().subscribe((data)=>{
  7. this.recipesList=data;
  8. console.log(this.recipesList);//printing array containing recipes
  9. });
  10. console.log(this.recipesList);//printing undefined
  11. }
Add Comment
Please, Sign In to add comment