...
/Solution Review: Displaying Data from a REST API
Solution Review: Displaying Data from a REST API
Get a detailed breakdown of how to display the data on the page.
We'll cover the following...
Solution
{
  // For more information, visit: https://go.microsoft.com/fwlink/?linkid=827846
  "recommendations": ["angular.ng-template"]
}
Solution displaying data on the page.
Explanation
- We start by creating a 
serviceusing the command below: 
ng generate service user
- Inside the
 
 Ask