From 0c84787f29482977e6ef0fd7cc320f1731994de1 Mon Sep 17 00:00:00 2001 From: daniel <6086151+dancci@users.noreply.github.com> Date: Thu, 9 Jan 2020 11:51:35 +0800 Subject: [PATCH] =?UTF-8?q?=E9=94=99=E5=88=AB=E5=AD=97?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit “选择器” -> “拦截器” --- aio/content/guide/http.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aio/content/guide/http.md b/aio/content/guide/http.md index 429f40dee8..df297a2a07 100644 --- a/aio/content/guide/http.md +++ b/aio/content/guide/http.md @@ -816,7 +816,7 @@ Multiple interceptors form a _forward-and-backward_ chain of request/response ha *HTTP* 拦截机制是 `@angular/common/http` 中的主要特性之一。 使用这种拦截机制,你可以声明*一些拦截器*,用它们监视和转换从应用发送到服务器的 HTTP 请求。 拦截器还可以用监视和转换从服务器返回到本应用的那些响应。 -多个选择器会构成一个“请求/响应处理器”的双向链表。 +多个拦截器会构成一个“请求/响应处理器”的双向链表。 Interceptors can perform a variety of _implicit_ tasks, from authentication to logging, in a routine, standard way, for every HTTP request/response.