From 8002c6fe7cbc1b48b33b6051c75f4a8735095ae1 Mon Sep 17 00:00:00 2001 From: Allo Date: Thu, 30 Nov 2023 09:55:00 +0800 Subject: [PATCH] fix related broken links --- files/zh-cn/web/api/document/cookie/index.md | 2 +- files/zh-cn/web/api/gamepad/index.md | 2 +- files/zh-cn/web/api/gamepadbutton/index.md | 2 +- .../web/api/gamepadbutton/pressed/index.md | 2 +- .../web/api/gamepadbutton/value/index.md | 2 +- .../web/api/gamepadevent/gamepad/index.md | 2 +- files/zh-cn/web/api/gamepadevent/index.md | 2 +- .../checking_when_a_deadline_is_due/index.md | 2 +- files/zh-cn/web/api/indexeddb_api/index.md | 2 +- files/zh-cn/web/api/mediastreamevent/index.md | 4 ++-- .../web/api/navigator/getgamepads/index.md | 2 +- files/zh-cn/web/api/rtcdatachannel/index.md | 10 ++++----- .../cantrickleicecandidates/index.md | 22 ++++++++----------- .../currentlocaldescription/index.md | 8 +++---- .../rtcpeerconnection/getreceivers/index.md | 4 ++-- .../icecandidate_event/index.md | 4 ++-- .../iceconnectionstate/index.md | 4 ++-- .../remotedescription/index.md | 8 +++---- .../rtcpeerconnection/removestream/index.md | 2 +- .../setremotedescription/index.md | 8 +++---- .../web/api/rtcsessiondescription/index.md | 12 +++++----- .../index.md | 16 +++++++------- .../using_web_workers/index.md | 2 +- .../webvr_api/using_the_webvr_api/index.md | 2 +- 24 files changed, 61 insertions(+), 65 deletions(-) diff --git a/files/zh-cn/web/api/document/cookie/index.md b/files/zh-cn/web/api/document/cookie/index.md index d3a60c568e7f96..4c1c7ea1b97fcf 100644 --- a/files/zh-cn/web/api/document/cookie/index.md +++ b/files/zh-cn/web/api/document/cookie/index.md @@ -80,7 +80,7 @@ if (document.cookie.replace(/(?:(?:^|.*;\s*)someCookieName\s*\=\s*([^;]*).*$)|^. ## 一个小框架:一个完整支持 unicode 的 cookie 读取/写入器 -作为一个格式化过的字符串,cookie 的值有时很难被自然地处理。下面的库的目的是通过定义一个和[`Storage 对象`](/zh-CN/docs/Web/Guide/API/DOM/Storage#Storage)部分`一致的`对象(docCookies),简化`document.cookie` 的获取方法。它提供完全的 Unicode 支持。 +作为一个格式化过的字符串,cookie 的值有时很难被自然地处理。下面的库的目的是通过定义一个和 [`Storage` 对象](/zh-CN/docs/Web/API/Storage)部分一致的对象(docCookies),简化 `document.cookie` 的获取方法。它提供完全的 Unicode 支持。 ```js /*\ diff --git a/files/zh-cn/web/api/gamepad/index.md b/files/zh-cn/web/api/gamepad/index.md index ddf8f183ec777d..941c48c7bd0886 100644 --- a/files/zh-cn/web/api/gamepad/index.md +++ b/files/zh-cn/web/api/gamepad/index.md @@ -58,5 +58,5 @@ window.addEventListener("gamepadconnected", function (e) { ## 参见 -- [使用 Gamepad API](/zh-CN/docs/Web/Guide/API/Gamepad) +- [使用 Gamepad API](/zh-CN/docs/Web/API/Gamepad_API/Using_the_Gamepad_API) - [Gamepad API](/zh-CN/docs/Web/API/Gamepad_API) diff --git a/files/zh-cn/web/api/gamepadbutton/index.md b/files/zh-cn/web/api/gamepadbutton/index.md index c667b0dac676c3..869bc65e773054 100644 --- a/files/zh-cn/web/api/gamepadbutton/index.md +++ b/files/zh-cn/web/api/gamepadbutton/index.md @@ -67,4 +67,4 @@ function gameLoop() { ## 参见 -[使用 Gamepad API](/zh-CN/docs/Web/Guide/API/Gamepad) +[使用 Gamepad API](/zh-CN/docs/Web/API/Gamepad_API/Using_the_Gamepad_API) diff --git a/files/zh-cn/web/api/gamepadbutton/pressed/index.md b/files/zh-cn/web/api/gamepadbutton/pressed/index.md index c5bda0da4f9b4e..65962333d61f3e 100644 --- a/files/zh-cn/web/api/gamepadbutton/pressed/index.md +++ b/files/zh-cn/web/api/gamepadbutton/pressed/index.md @@ -37,4 +37,4 @@ if (gp.buttons[0].pressed == true) { ## 参见 -- [使用 Gamepad API](/zh-CN/docs/Web/Guide/API/Gamepad) +- [使用 Gamepad API](/zh-CN/docs/Web/API/Gamepad_API/Using_the_Gamepad_API) diff --git a/files/zh-cn/web/api/gamepadbutton/value/index.md b/files/zh-cn/web/api/gamepadbutton/value/index.md index 60fa020eb55b74..024133ed59c830 100644 --- a/files/zh-cn/web/api/gamepadbutton/value/index.md +++ b/files/zh-cn/web/api/gamepadbutton/value/index.md @@ -40,4 +40,4 @@ if (gp.buttons[0].value > 0) { ## 参见 -[使用 Gamepad API](/zh-CN/docs/Web/Guide/API/Gamepad) +[使用 Gamepad API](/zh-CN/docs/Web/API/Gamepad_API/Using_the_Gamepad_API) diff --git a/files/zh-cn/web/api/gamepadevent/gamepad/index.md b/files/zh-cn/web/api/gamepadevent/gamepad/index.md index 12ab1dff3b698c..3e8b14bda8b16d 100644 --- a/files/zh-cn/web/api/gamepadevent/gamepad/index.md +++ b/files/zh-cn/web/api/gamepadevent/gamepad/index.md @@ -43,4 +43,4 @@ window.addEventListener("gamepadconnected", function (e) { ## 参见 -[使用 Gamepad API](/zh-CN/docs/Web/Guide/API/Gamepad) +[使用 Gamepad API](/zh-CN/docs/Web/API/Gamepad_API/Using_the_Gamepad_API) diff --git a/files/zh-cn/web/api/gamepadevent/index.md b/files/zh-cn/web/api/gamepadevent/index.md index d95ea86caf357d..c309bcdeb83dcf 100644 --- a/files/zh-cn/web/api/gamepadevent/index.md +++ b/files/zh-cn/web/api/gamepadevent/index.md @@ -51,4 +51,4 @@ window.addEventListener("gamepaddisconnected", function (e) { ## 参见 -[使用 Gamepad API](/zh-CN/docs/Web/Guide/API/Gamepad) +[使用 Gamepad API](/zh-CN/docs/Web/API/Gamepad_API/Using_the_Gamepad_API) diff --git a/files/zh-cn/web/api/indexeddb_api/checking_when_a_deadline_is_due/index.md b/files/zh-cn/web/api/indexeddb_api/checking_when_a_deadline_is_due/index.md index 9890936d2ecf9b..a0d2cdb639ed75 100644 --- a/files/zh-cn/web/api/indexeddb_api/checking_when_a_deadline_is_due/index.md +++ b/files/zh-cn/web/api/indexeddb_api/checking_when_a_deadline_is_due/index.md @@ -9,7 +9,7 @@ slug: Web/API/IndexedDB_API/Checking_when_a_deadline_is_due ![A screenshot of the sample app. A red main title saying To do app, a test to-do item, and a red form for users to enter new tasks](to-do-app.png) -The main example application we will be referring to in this article is **To-do list notifications**, a simple to-do list application that stores task titles and deadline times and dates via [IndexedDB](/zh-CN/docs/Web/API/IndexedDB_API), and then provides users with notifications when deadline dates are reached, via the [Notification](/zh-CN/docs/Web/API/notification), and [Vibration](/zh-CN/docs/Web/Guide/API/Vibration) APIs. You can [download the To-do list notifications app from github](https://github.com/chrisdavidmills/to-do-notifications/tree/gh-pages) and play around with the source code, or [view the app running live](https://mdn.github.io/dom-examples/to-do-notifications/). +The main example application we will be referring to in this article is **To-do list notifications**, a simple to-do list application that stores task titles and deadline times and dates via [IndexedDB](/zh-CN/docs/Web/API/IndexedDB_API), and then provides users with notifications when deadline dates are reached, via the [Notification](/zh-CN/docs/Web/API/notification), and [Vibration](/zh-CN/docs/Web/API/Vibration_API) APIs. You can [download the To-do list notifications app from github](https://github.com/chrisdavidmills/to-do-notifications/tree/gh-pages) and play around with the source code, or [view the app running live](https://mdn.github.io/dom-examples/to-do-notifications/). ## 基本问题 diff --git a/files/zh-cn/web/api/indexeddb_api/index.md b/files/zh-cn/web/api/indexeddb_api/index.md index 2218fa27bc919c..882814615f04d4 100644 --- a/files/zh-cn/web/api/indexeddb_api/index.md +++ b/files/zh-cn/web/api/indexeddb_api/index.md @@ -13,7 +13,7 @@ IndexedDB 是一种底层 API,用于在客户端存储大量的结构化数据 ## 关键概念和用法 -IndexedDB 是一个事务型数据库系统,类似于基于 SQL 的 RDBMS。然而,不像 RDBMS 使用固定列表,IndexedDB 是一个基于 JavaScript 的面向对象数据库。IndexedDB 允许你存储和检索用**键**索引的对象;可以存储[结构化克隆算法](/zh-CN/docs/Web/Guide/API/DOM/The_structured_clone_algorithm)支持的任何对象。你只需要指定数据库模式,打开与数据库的连接,然后检索和更新一系列**事务**。 +IndexedDB 是一个事务型数据库系统,类似于基于 SQL 的 RDBMS。然而,不像 RDBMS 使用固定列表,IndexedDB 是一个基于 JavaScript 的面向对象数据库。IndexedDB 允许你存储和检索用**键**索引的对象;可以存储[结构化克隆算法](/zh-CN/docs/Web/API/Web_Workers_API/Structured_clone_algorithm)支持的任何对象。你只需要指定数据库模式,打开与数据库的连接,然后检索和更新一系列**事务**。 - 阅读更多关于 [IndexedDB 背后的概念](/zh-CN/docs/Web/API/IndexedDB_API/Basic_Concepts_Behind_IndexedDB)。 - 从[使用 IndexedDB](/zh-CN/docs/Web/API/IndexedDB_API/Using_IndexedDB) 指南的第一准则中学习异步使用 IndexedDB。 diff --git a/files/zh-cn/web/api/mediastreamevent/index.md b/files/zh-cn/web/api/mediastreamevent/index.md index 99cbdf16eb406a..daea8c6f789419 100644 --- a/files/zh-cn/web/api/mediastreamevent/index.md +++ b/files/zh-cn/web/api/mediastreamevent/index.md @@ -39,5 +39,5 @@ pc.onaddstream = function (ev) { ## 参见 -- [WebRTC](/zh-CN/docs/Web/Guide/API/WebRTC) -- Its usual target: {{domxref("RTCPeerConnection")}}. +- [WebRTC](/zh-CN/docs/Web/API/WebRTC_API) +- 它的常见目标:{{domxref("RTCPeerConnection")}}。 diff --git a/files/zh-cn/web/api/navigator/getgamepads/index.md b/files/zh-cn/web/api/navigator/getgamepads/index.md index 6cd3d025aeeb19..e5798372efdae7 100644 --- a/files/zh-cn/web/api/navigator/getgamepads/index.md +++ b/files/zh-cn/web/api/navigator/getgamepads/index.md @@ -38,5 +38,5 @@ window.addEventListener("gamepadconnected", function (e) { ## 参见 -- [Using the Gamepad API](/zh-CN/docs/Web/Guide/API/Gamepad) +- [使用 Gamepad API](/zh-CN/docs/Web/API/Gamepad_API/Using_the_Gamepad_API) - [Gamepad API](/zh-CN/docs/Web/API/Gamepad_API) diff --git a/files/zh-cn/web/api/rtcdatachannel/index.md b/files/zh-cn/web/api/rtcdatachannel/index.md index 20e918b4ac4049..358a94732e4dc8 100644 --- a/files/zh-cn/web/api/rtcdatachannel/index.md +++ b/files/zh-cn/web/api/rtcdatachannel/index.md @@ -63,7 +63,7 @@ RTCDataChannel 接口代表在两者之间建立了一个双向数据通道的 - {{domxref("RTCDataChannel.send()")}} - : 将参数中的数据通过 channel 发送。这个数据可以是{{domxref("DOMString")}}, {{domxref("Blob")}}, {{domxref("ArrayBuffer")}}或者是 {{domxref("ArrayBufferView")}}类型。 -## Example +## 示例 ```js var pc = new RTCPeerConnection(); @@ -82,14 +82,14 @@ dc.onclose = function () { }; ``` -## Specifications +## 规范 {{Specifications}} -## Browser compatibility +## 浏览器兼容性 {{Compat}} -## See also +## 参见 -- [WebRTC](/zh-CN/docs/Web/Guide/API/WebRTC) +- [WebRTC](/zh-CN/docs/Web/API/WebRTC_API) diff --git a/files/zh-cn/web/api/rtcpeerconnection/cantrickleicecandidates/index.md b/files/zh-cn/web/api/rtcpeerconnection/cantrickleicecandidates/index.md index d6c2e551ec74a9..cdc67ac4af40c3 100644 --- a/files/zh-cn/web/api/rtcpeerconnection/cantrickleicecandidates/index.md +++ b/files/zh-cn/web/api/rtcpeerconnection/cantrickleicecandidates/index.md @@ -3,25 +3,21 @@ title: RTCPeerConnection.canTrickleIceCandidates slug: Web/API/RTCPeerConnection/canTrickleIceCandidates --- -{{APIRef("WebRTC")}}只读的 **{{domxref("RTCPeerConnection")}}** 属性 `canTrickleIceCandidates` 返回一个{{jsxref("Boolean")}},它指示远程对等端是否可以接受 [trickled ICE candidates](https://tools.ietf.org/html/draft-ietf-mmusic-trickle-ice-02) 。 +{{APIRef("WebRTC")}} + +只读的 **{{domxref("RTCPeerConnection")}}** 属性 `canTrickleIceCandidates` 返回一个{{jsxref("Boolean")}},它指示远程对等端是否可以接受 [trickled ICE candidates](https://tools.ietf.org/html/draft-ietf-mmusic-trickle-ice-02) 。 **ICE trickling**是在初始发送或回应已经发送给其他设备之后继续发送候选的过程。 仅在调用{{domxref("RTCPeerConnection.setRemoteDescription()")}}之后才设置此属性。理想情况下,你的信令协议提供了一种检测滴流支持的方法,因此你无需依赖此属性。WebRTC 浏览器将始终支持 trickle ICE。如果不支持滴流,或者你无法辨别,则可以检查此属性的伪值,然后等待{{domxref("RTCPeerConnection.iceGatheringState","iceGatheringState")}}的值更改在创建和发送之前“完成”。这样,发送信息包含所有候选。 -## 语法 - -```plain - var canTrickle = RTCPeerConnection.canTrickleIceCandidates; -``` - -### 值 +## 值 -{{jsxref("Boolean")}} 如果远程对等体可以接受滴入的 ICE candidate,则为 true;如果不能,则为 false。如果尚未建立远程对等方,则此值为 null。 +{{jsxref("Boolean")}} 如果远程对等体可以接受滴入的 ICE candidate,则为 true;如果不能,则为 false。如果尚未建立远程对等方,则此值为 null。 > **备注:** 一旦本地对等方调用{{domxref("RTCPeerConnection.setRemoteDescription()")}},就确定该属性的值; ICE 代理使用所提供的描述来确定远程对等体是否支持滴入的 ICE candidates。 -## 用例 +## 示例 ```js var pc = new RTCPeerConnection(); @@ -60,8 +56,8 @@ pc.addEventListener('icecandidate', e => { {{Compat}} -## 相关阅读 +## 参见 -- [WebRTC](/zh-CN/docs/Web/Guide/API/WebRTC) +- [WebRTC](/zh-CN/docs/Web/API/WebRTC_API) - {{domxref("RTCPeerConnection.addIceCandidate()")}} -- [Lifetime of a WebRTC session](/zh-CN/docs/Web/API/WebRTC_API/Session_lifetime) +- [WebRTC 会话的生命周期](/zh-CN/docs/Web/API/WebRTC_API/Session_lifetime) diff --git a/files/zh-cn/web/api/rtcpeerconnection/currentlocaldescription/index.md b/files/zh-cn/web/api/rtcpeerconnection/currentlocaldescription/index.md index d4075a5116c111..dbe93ac471c060 100644 --- a/files/zh-cn/web/api/rtcpeerconnection/currentlocaldescription/index.md +++ b/files/zh-cn/web/api/rtcpeerconnection/currentlocaldescription/index.md @@ -49,8 +49,8 @@ else { > **备注:** The addition of `currentLocalDescription` and {{domxref("RTCPeerConnection.pendingLocalDescription", "pendingLocalDescription")}} to the WebRTC spec is relatively recent. In browsers which don't support them, just use {{domxref("RTCPeerConnection.localDescription", "localDescription")}}. -## 参阅 +## 参见 -- {{domxref("RTCPeerConnection.setLocalDescription()")}}, {{domxref("RTCPeerConnection.pendingLocalDescription")}}, {{domxref("RTCPeerConnection.localDescription")}} -- {{domxref("RTCPeerConnection.setRemoteDescription()")}}, {{domxref("RTCPeerConnection.remoteDescription")}}, {{domxref("RTCPeerConnection.pendingRemoteDescription")}}, {{domxref("RTCPeerConnection.currentRemoteDescription")}} -- [WebRTC](/zh-CN/docs/Web/Guide/API/WebRTC) +- {{domxref("RTCPeerConnection.setLocalDescription()")}}、{{domxref("RTCPeerConnection.pendingLocalDescription")}}、{{domxref("RTCPeerConnection.localDescription")}} +- {{domxref("RTCPeerConnection.setRemoteDescription()")}}、{{domxref("RTCPeerConnection.remoteDescription")}}、{{domxref("RTCPeerConnection.pendingRemoteDescription")}}、{{domxref("RTCPeerConnection.currentRemoteDescription")}} +- [WebRTC](/zh-CN/docs/Web/API/WebRTC_API) diff --git a/files/zh-cn/web/api/rtcpeerconnection/getreceivers/index.md b/files/zh-cn/web/api/rtcpeerconnection/getreceivers/index.md index 3445e8871673d6..3520c50b455edc 100644 --- a/files/zh-cn/web/api/rtcpeerconnection/getreceivers/index.md +++ b/files/zh-cn/web/api/rtcpeerconnection/getreceivers/index.md @@ -31,7 +31,7 @@ var receivers = rtcPeerConnection.getReceivers(); {{Compat}} -## 参阅 +## 参见 -- [WebRTC](/zh-CN/docs/Web/Guide/API/WebRTC_API) +- [WebRTC](/zh-CN/docs/Web/API/WebRTC_API) - {{domxref("RTCRtpSender")}} diff --git a/files/zh-cn/web/api/rtcpeerconnection/icecandidate_event/index.md b/files/zh-cn/web/api/rtcpeerconnection/icecandidate_event/index.md index e55ce52b2b3b29..3bf501de425d20 100644 --- a/files/zh-cn/web/api/rtcpeerconnection/icecandidate_event/index.md +++ b/files/zh-cn/web/api/rtcpeerconnection/icecandidate_event/index.md @@ -124,6 +124,6 @@ _方法继承自 {{domxref("RTCPeerConnectionIceEvent")}}._ {{Compat}} -## 参阅 +## 参见 -- [WebRTC](/zh-CN/docs/Web/Guide/API/WebRTC) +- [WebRTC](/zh-CN/docs/Web/API/WebRTC_API) diff --git a/files/zh-cn/web/api/rtcpeerconnection/iceconnectionstate/index.md b/files/zh-cn/web/api/rtcpeerconnection/iceconnectionstate/index.md index 1c082c76996207..a3b3c1f5bdc2c3 100644 --- a/files/zh-cn/web/api/rtcpeerconnection/iceconnectionstate/index.md +++ b/files/zh-cn/web/api/rtcpeerconnection/iceconnectionstate/index.md @@ -40,6 +40,6 @@ var state = pc.iceConnectionState; {{Compat}} -## 参考文档 +## 参见 -- [WebRTC](/zh-CN/docs/Web/Guide/API/WebRTC) +- [WebRTC](/zh-CN/docs/Web/API/WebRTC_API) diff --git a/files/zh-cn/web/api/rtcpeerconnection/remotedescription/index.md b/files/zh-cn/web/api/rtcpeerconnection/remotedescription/index.md index 625e81cba15c13..1be1f1a7432ddc 100644 --- a/files/zh-cn/web/api/rtcpeerconnection/remotedescription/index.md +++ b/files/zh-cn/web/api/rtcpeerconnection/remotedescription/index.md @@ -43,8 +43,8 @@ else { {{Compat}} -## 相关链接 +## 参见 -- {{domxref("RTCPeerConnection.setRemoteDescription()")}}, {{domxref("RTCPeerConnection.pendingRemoteDescription")}}, {{domxref("RTCPeerConnection.currentRemoteDescription")}} -- {{domxref("RTCPeerConnection.setLocalDescription()")}}, {{domxref("RTCPeerConnection.pendingLocalDescription")}}, {{domxref("RTCPeerConnection.currentLocalDescription")}}, {{domxref("RTCPeerConnection.localDescription")}} -- [WebRTC](/zh-CN/docs/Web/Guide/API/WebRTC) +- {{domxref("RTCPeerConnection.setRemoteDescription()")}}、{{domxref("RTCPeerConnection.pendingRemoteDescription")}}、{{domxref("RTCPeerConnection.currentRemoteDescription")}} +- {{domxref("RTCPeerConnection.setLocalDescription()")}}、{{domxref("RTCPeerConnection.pendingLocalDescription")}}、{{domxref("RTCPeerConnection.currentLocalDescription")}}、{{domxref("RTCPeerConnection.localDescription")}} +- [WebRTC](/zh-CN/docs/Web/API/WebRTC_API) diff --git a/files/zh-cn/web/api/rtcpeerconnection/removestream/index.md b/files/zh-cn/web/api/rtcpeerconnection/removestream/index.md index 5d45fa86b3f184..074c99489f94bb 100644 --- a/files/zh-cn/web/api/rtcpeerconnection/removestream/index.md +++ b/files/zh-cn/web/api/rtcpeerconnection/removestream/index.md @@ -43,4 +43,4 @@ document.getElementById("closeButton").addEventListener("click", function(event) ## 参见 -- [WebRTC](/zh-CN/docs/Web/Guide/API/WebRTC) +- [WebRTC](/zh-CN/docs/Web/API/WebRTC_API) diff --git a/files/zh-cn/web/api/rtcpeerconnection/setremotedescription/index.md b/files/zh-cn/web/api/rtcpeerconnection/setremotedescription/index.md index b3e753f7452f1f..19bb3327b200ee 100644 --- a/files/zh-cn/web/api/rtcpeerconnection/setremotedescription/index.md +++ b/files/zh-cn/web/api/rtcpeerconnection/setremotedescription/index.md @@ -46,14 +46,14 @@ pc.setRemoteDescription(new RTCSessionDescription(offer), function () { }); ``` -## Specifications +## 规范 {{Specifications}} -## Browser compatibility +## 浏览器兼容性 {{Compat}} -## See also +## 参见 -- [WebRTC](/zh-CN/docs/Web/Guide/API/WebRTC) +- [WebRTC](/zh-CN/docs/Web/API/WebRTC_API) diff --git a/files/zh-cn/web/api/rtcsessiondescription/index.md b/files/zh-cn/web/api/rtcsessiondescription/index.md index 2e074bf59279e2..95aa0b13a536f4 100644 --- a/files/zh-cn/web/api/rtcsessiondescription/index.md +++ b/files/zh-cn/web/api/rtcsessiondescription/index.md @@ -40,7 +40,7 @@ _`RTCSessionDescription` 不继承任何方法。_ - {{domxref("RTCSessionDescription.toJSON()")}} - : 返回一个{{Glossary("JSON")}} 描述对象。该对象包含两个值,{{domxref("RTCSessionDescription.type", "type")}} 和{{domxref("RTCSessionDescription.sdp", "sdp")}}。 -## Example +## 示例 ```js signalingChannel.onmessage = function (evt) { @@ -66,15 +66,15 @@ signalingChannel.onmessage = function (evt) { }; ``` -## Specifications +## 规范 {{Specifications}} -## Browser compatibility +## 浏览器兼容性 {{Compat}} -## See also +## 参见 -- [WebRTC](/zh-CN/docs/Web/Guide/API/WebRTC) -- {{domxref("RTCPeerConnection.setLocalDescription()")}} and {{domxref("RTCPeerConnection.setRemoteDescription()")}} +- [WebRTC](/zh-CN/docs/Web/API/WebRTC_API) +- {{domxref("RTCPeerConnection.setLocalDescription()")}} 和 {{domxref("RTCPeerConnection.setRemoteDescription()")}} diff --git a/files/zh-cn/web/api/storage_api/storage_quotas_and_eviction_criteria/index.md b/files/zh-cn/web/api/storage_api/storage_quotas_and_eviction_criteria/index.md index 976a9da95abf14..838f202ffee5d7 100644 --- a/files/zh-cn/web/api/storage_api/storage_quotas_and_eviction_criteria/index.md +++ b/files/zh-cn/web/api/storage_api/storage_quotas_and_eviction_criteria/index.md @@ -24,7 +24,7 @@ slug: Web/API/Storage_API/Storage_quotas_and_eviction_criteria 源的“最后访问时间”会更新,当其中任何一个被激活/停用时——所有这些源下的配额客户端的数据会被回收。 -在 Chrome/Opera 中,Quota Management API 处理[AppCache](/zh-CN/docs/Web/HTML/Using_the_application_cache),[IndexedDB](/zh-CN/docs/Web/API/IndexedDB_API),WebSQL 和[File System API](/zh-CN/docs/WebGuide/API/File_System)的配额管理。 +在 Chrome/Opera 中,Quota Management API 处理 [AppCache](/zh-CN/docs/Web/HTML/Using_the_application_cache)、[IndexedDB](/zh-CN/docs/Web/API/IndexedDB_API)、WebSQL 和 [File System API](/zh-CN/docs/Web/API/File_and_Directory_Entries_API/Introduction) 的配额管理。 ## 数据存储的不同类型 @@ -32,21 +32,21 @@ slug: Web/API/Storage_API/Storage_quotas_and_eviction_criteria 一般来说,数据存储的的类型主要有以下两种: -- 持久化存储:这种数据是希望长久保留的,只有的当用户选择清除才会被删除掉(比如,在 Firefox 中,你可以通过转到*“首选项”*并使用“ *隐私和安全”>“Cookie 和站点数据”*下的选项,选择删除所有存储的数据或仅删除所选来源的存储数据)。 -- 临时存储:这种数据不用保存很久,当最近一次使用时[储存限制](#储存限制)达到限制大小就会被自动清理掉([LRU 策略](#lru策略))。 +- 持久化存储:这种数据是希望长久保留的,只有的当用户选择清除才会被删除掉(比如,在 Firefox 中,你可以通过转到“_首选项_”并使用“_隐私和安全_”>“_Cookie 和站点数据_”下的选项,选择删除所有存储的数据或仅删除所选来源的存储数据)。 +- 临时存储:这种数据不用保存很久,当最近一次使用时[储存限制](#储存限制)达到限制大小就会被自动清理掉([LRU 策略](#lru_策略))。 在 Firefox 中,当使用持久存储时,会向用户提供一个 UI 弹出窗口,提醒他们这些数据将持续存在,并询问他们是否对此感到满意。临时数据存储不会引发任何用户提示。 -默认的是临时存储;开发人员可以选择使用{{domxref("StorageManager.persist()")}}方法使用持久储存。 +默认的是临时存储;开发人员可以选择使用 {{domxref("StorageManager.persist()")}} 方法使用持久储存。 ## 数据存储在哪里? 每种存储类型代表一个单独的存储库。这是用户 Firefox 配置文件下目录的实际映射(其他浏览器可能略有不同): -- `/storage` — 配额管理器维护的主要顶级目录(见下文) -- `/storage/permanent` — 持久数据存储库 -- `/storage/temporary` —临时数据存储库 -- `/storage/default` — 默认数据存储库 +- `/storage`——配额管理器维护的主要顶级目录(见下文) +- `/storage/permanent`——持久数据存储库 +- `/storage/temporary`——临时数据存储库 +- `/storage/default`——默认数据存储库 > **备注:** 引入[Storage API](/zh-CN/docs/Web/API/Web_Storage_API)后,“permanent”文件夹可以被认为是过时的;“permanent”文件夹仅存储 IndexedDB 持久性数据库。模式是“best-effort”还是“persistent”并不重要——数据存储在\/storage/default 下。 diff --git a/files/zh-cn/web/api/web_workers_api/using_web_workers/index.md b/files/zh-cn/web/api/web_workers_api/using_web_workers/index.md index 7812c767c4c994..28a2909df764c7 100644 --- a/files/zh-cn/web/api/web_workers_api/using_web_workers/index.md +++ b/files/zh-cn/web/api/web_workers_api/using_web_workers/index.md @@ -292,7 +292,7 @@ onmessage = (event) => { }; ``` -[结构化克隆](/zh-CN/docs/Web/Guide/API/DOM/The_structured_clone_algorithm)算法可以接收 JSON 数据以及一些 JSON 不能表示的数据——比如循环引用。 +[结构化克隆](/zh-CN/docs/Web/API/Web_Workers_API/Structured_clone_algorithm)算法可以接收 JSON 数据以及一些 JSON 不能表示的数据——比如循环引用。 ### 传递数据的例子 diff --git a/files/zh-cn/web/api/webvr_api/using_the_webvr_api/index.md b/files/zh-cn/web/api/webvr_api/using_the_webvr_api/index.md index 8c1ec536a1aeb2..495d5b949539c8 100644 --- a/files/zh-cn/web/api/webvr_api/using_the_webvr_api/index.md +++ b/files/zh-cn/web/api/webvr_api/using_the_webvr_api/index.md @@ -292,7 +292,7 @@ Finally, we {{domxref("CanvasRenderingContext2D.restore","restore()")}} the canv ### Fullscreen 全屏控制 -The VR effect is much more effective if you set your app runnning in [fullscreen mode](/zh-CN/docs/Web/Guide/API/DOM/Using_full_screen_mode) — this generally means setting your {{htmlelement("canvas")}} element to fullscreen when a specific event occurs — such as double-clicking the display or pressing a specific button. +The VR effect is much more effective if you set your app runnning in [fullscreen mode](/zh-CN/docs/Web/API/Fullscreen_API) — this generally means setting your {{htmlelement("canvas")}} element to fullscreen when a specific event occurs — such as double-clicking the display or pressing a specific button. In this case I have just kept things simple, running a `fullScreen()` function when the canvas is clicked: