1
0
mirror of https://github.com/kamranahmedse/developer-roadmap.git synced 2025-08-29 03:59:54 +02:00

docs(angular): add making requests content (#6526)

This commit is contained in:
J. Degand
2024-08-13 04:07:12 -04:00
committed by GitHub
parent ebd4ea62f7
commit fad50453bc

View File

@@ -1 +1,8 @@
# Making Requests
# Making Requests
`HttpClient` has methods corresponding to the different HTTP verbs used to make requests, both to load data and to apply mutations on the server. Each method returns an RxJS `Observable` which, when subscribed, sends the request and then emits the results when the server responds.
Visit the following resources to learn more:
- [@official@Angular Official Docs - Making requests](https://angular.dev/guide/http/making-requests)
- [@video@How to make HTTP request in Angular 18](https://www.youtube.com/watch?v=3vQpYKlHmS0)