From d1db342fba9ef85c04acf983ad3c88a19786eedf Mon Sep 17 00:00:00 2001 From: Fu-ch Date: Sun, 12 Apr 2020 19:33:56 +0800 Subject: [PATCH] =?UTF-8?q?=E4=B8=80=E5=A4=84=E7=BF=BB=E8=AF=91=E9=94=99?= =?UTF-8?q?=E8=AF=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit by-passing:绕过 --- 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 79427ef58c..b4a56548f0 100644 --- a/aio/content/guide/http.md +++ b/aio/content/guide/http.md @@ -1138,7 +1138,7 @@ to the next handler in the chain. If a cachable request is found in the cache, the interceptor returns an `of()` _observable_ with the cached response, by-passing the `next` handler (and all other interceptors downstream). -如果可缓存的请求在缓存中找到了,该拦截器就会通过 `of()` 函数返回一个已缓存的响应体的*可观察对象*,然后把它传给 `next` 处理器(以及所有其它下游拦截器)。 +如果可缓存的请求在缓存中找到了,该拦截器就会通过 `of()` 函数返回一个已缓存的响应体的*可观察对象*,然后绕过 `next` 处理器(以及所有其它下游拦截器)。 If a cachable request is not in cache, the code calls `sendRequest`.