- [Instructor] To work with HTTP calls from Angular…you typically need some sort of end point to call to,…but since Angular has a powerful dependency injection engine…and the code base is built upon it…we can actually leverage that to replace Angular's…HTTP XHR Backend class…that handles the HTTP calls…and set up a mock one to simulate those calls.…The exercise files have already been set up…with a mock class for that.…If you are interested in it,…feel free to check out the mock-xhr-backend.ts file…to see what it's up to.…
This class is set up in the app…to support HTTP calls to the URL, media items,…forget posts, and delete verbs.…It will allow us to build out the media item service…to use Angular's HTTP service…while not requiring a separate API to hit.…And with Angular's DI architecture…the default HTTP XHR Backend class…is easy to replace.…Over in the app.module.ts file…we need to import the type that we are going to mock.…
The HTTP XHR Backend.…That comes from @angular/common/http.…So, we can add HttpXhrBackend to the imports list.…
Author
Updated
3/1/2018Released
10/31/2016Justin Schwartzenberger steps through the framework one feature at a time, focusing on the component-based architecture of Angular. Learn what Angular is and what it can do, as Justin builds a full-featured web app from start to finish. After mastering the essentials, you can tackle the other project-based courses in our library and create your own Angular app.
- What is Angular?
- Setting up an Angular template
- Creating a component
- Binding events and properties
- Getting data to components
- Using directives and pipes
- Creating Angular forms
- Validating form data
- Understanding dependency injection
- Providing services
- Making HTTP calls
- Routing
Skill Level Beginner
Duration
Views
Q: This course was updated on 03/01/2018. What changed?
A: The following topics were updated: directives and pipes, forms, dependency injection and services, HTTP, and routing.
Related Courses
-
Introduction
-
Welcome1m 27s
-
Why use AngularJS 2?1m 36s
-
Using the exercise files1m 51s
-
Basics of TypeScript2m 24s
-
Course overview1m 2s
-
-
1. Architecture Overview
-
Directives and pipes1m 40s
-
Data binding1m 53s
-
Dependency injection1m 54s
-
Data persistence1m 47s
-
Routing1m 50s
-
2. Components
-
NgModule and the root module5m 59s
-
Component metadata2m 4s
-
The component selector2m 12s
-
The component template2m 59s
-
Styling a component5m 3s
-
Property binding2m 30s
-
-
3. Directives and Pipes
-
Structural directives: ngFor3m 34s
-
Attribute directives: custom3m 53s
-
Using directive values3m 36s
-
Angular pipes: built in3m 1s
-
Angular pipes: custom4m 28s
-
4. Forms
-
Angular forms1m 29s
-
Template-driven forms4m 45s
-
Model-driven forms4m 19s
-
Validation: built in3m 28s
-
Validation: custom3m 2s
-
Error handling5m 10s
-
-
5. Dependency Injection and Services
-
Services in Angular2m 22s
-
Class constructor injection2m 39s
-
The Inject decorator3m 40s
-
Injection token3m 36s
-
6. HTTP
-
The Angular HttpClient2m 5s
-
-
7. Routing
-
Router links2m 36s
-
Conclusion
-
Next steps1m 20s
-
- Mark as unwatched
- Mark all as unwatched
Are you sure you want to mark all the videos in this course as unwatched?
This will not affect your course history, your reports, or your certificates of completion for this course.
CancelTake notes with your new membership!
Type in the entry box, then click Enter to save your note.
1:30Press on any video thumbnail to jump immediately to the timecode shown.
Notes are saved with you account but can also be exported as plain text, MS Word, PDF, Google Doc, or Evernote.
Share this video
Embed this video
Video: Use a mock back end for HTTP calls