September 2017
Intermediate to advanced
450 pages
11h 24m
English
Let's create a BlogPostsService to retrieve our blog posts. We will set this service up as an asynchronous promise that will resolve when it has loaded our posts. We will mock the blog post results for now, but will set it up so that we can eventually swap out with the internals to use an API request instead.
Before we get started, we'll once again scaffold out our content using Angular-CLI's generate command. We will need a new BlogPostsService, as well as as a new PostListComponent to display all our blog posts to the user:
ng generate service posts/blog-postsng generate component posts/post-list
Read now
Unlock full access