Submodule 22.3: Angular HTTP Client - Practice
Updating Dishdetail Component
Open dishdetail.component.ts
and update it as follows:
import { Component, OnInit, Inject } from '@angular/core';
...
constructor(private dishService: DishService,
@Inject('BaseURL') public BaseURL) { }
...
DishdetailComponent, injects the DishService and calls the getDish() service method.
Open dishdetail.component.html
and update it as follows:
src="{{BaseURL + dish.image}}"