From e3c511c970002297d125fa2025e6e5b00c503edb Mon Sep 17 00:00:00 2001 From: Matthieu Riegler Date: Thu, 25 Apr 2024 23:55:36 +0200 Subject: [PATCH] docs: add mention of the HTTP client for interceptors fixes #53911 --- adev/src/content/tutorials/first-app/steps/14-http/README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/adev/src/content/tutorials/first-app/steps/14-http/README.md b/adev/src/content/tutorials/first-app/steps/14-http/README.md index 40b1f299d0390..4a52213897f22 100644 --- a/adev/src/content/tutorials/first-app/steps/14-http/README.md +++ b/adev/src/content/tutorials/first-app/steps/14-http/README.md @@ -196,6 +196,8 @@ The server is now reading data from the HTTP request but the components that rel +Note: This lesson relies on the `fetch` browser API. For the support of interceptors, please refer to the [Http Client documentation](/guide/http) + Summary: In this lesson, you updated your app to use a local web server (`json-server`), and use asynchronous service methods to retrieve data. Congratulations! You've successfully completed this tutorial and are ready to continue your journey with building even more complex Angular Apps.