From 0be80309b4ecc0edbb44ff631148cafd434c7a9d Mon Sep 17 00:00:00 2001 From: Freeyayo Date: Fri, 18 Mar 2022 01:08:23 +0800 Subject: typo (#4674) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 中文错误 Wrong word in Chinese --- files/zh-cn/web/api/service_worker_api/using_service_workers/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'files/zh-cn') diff --git a/files/zh-cn/web/api/service_worker_api/using_service_workers/index.html b/files/zh-cn/web/api/service_worker_api/using_service_workers/index.html index 6d3bb8217f..19bf63764f 100644 --- a/files/zh-cn/web/api/service_worker_api/using_service_workers/index.html +++ b/files/zh-cn/web/api/service_worker_api/using_service_workers/index.html @@ -177,7 +177,7 @@ imgLoad('myLittleVader.jpg').then(function(response) {
  1. 外面的代码块做了一个特性检查,在注册之前确保 service worker 是支持的。
  2. 接着,我们使用 {{domxref("ServiceWorkerContainer.register()") }} 函数来注册站点的 service worker,service worker 只是一个驻留在我们的 app 内的一个 JavaScript 文件 (注意,这个文件的url 是相对于 origin, 而不是相对于引用它的那个 JS 文件)。
  3. -
  4.  scope 参数是选填的,可以被用来指定你想让 service worker 控制的内容的子目录。在这个例子例,我们指定了 '/sw-test/',表示 app 的 origin 下的所有内容。如果你留空的话,默认值也是这个值, 我们在指定只是作为例子。
  5. +
  6. scope 参数是选填的,可以被用来指定你想让 service worker 控制的内容的子目录。在这个例子里,我们指定了 '/sw-test/',表示 app 的 origin 下的所有内容。如果你留空的话,默认值也是这个值, 我们在指定只是作为例子。
  7. .then() 函数链式调用我们的 promise,当 promise resolve 的时候,里面的代码就会执行。
  8. 最后面我们链了一个 .catch() 函数,当 promise rejected 才会执行。
-- cgit v1.2.3-54-g00ecf