aboutsummaryrefslogtreecommitdiff
path: root/files/zh-tw/glossary/asynchronous/index.html
diff options
context:
space:
mode:
authorPeter Bengtsson <mail@peterbe.com>2020-12-08 14:43:23 -0500
committerPeter Bengtsson <mail@peterbe.com>2020-12-08 14:43:23 -0500
commit218934fa2ed1c702a6d3923d2aa2cc6b43c48684 (patch)
treea9ef8ac1e1b8fe4207b6d64d3841bfb8990b6fd0 /files/zh-tw/glossary/asynchronous/index.html
parent074785cea106179cb3305637055ab0a009ca74f2 (diff)
downloadtranslated-content-218934fa2ed1c702a6d3923d2aa2cc6b43c48684.tar.gz
translated-content-218934fa2ed1c702a6d3923d2aa2cc6b43c48684.tar.bz2
translated-content-218934fa2ed1c702a6d3923d2aa2cc6b43c48684.zip
initial commit
Diffstat (limited to 'files/zh-tw/glossary/asynchronous/index.html')
-rw-r--r--files/zh-tw/glossary/asynchronous/index.html19
1 files changed, 19 insertions, 0 deletions
diff --git a/files/zh-tw/glossary/asynchronous/index.html b/files/zh-tw/glossary/asynchronous/index.html
new file mode 100644
index 0000000000..807ac2cd14
--- /dev/null
+++ b/files/zh-tw/glossary/asynchronous/index.html
@@ -0,0 +1,19 @@
+---
+title: Asynchronous 非同步
+slug: Glossary/Asynchronous
+translation_of: Glossary/Asynchronous
+---
+<p><em>非同步</em>(Asynchronous,又稱異步)指的是各方在方便或可能時,才接收並處理訊息,而不是立刻這麼做的通訊環境。</p>
+
+<p>你可以用人類的溝通環境來比喻:例如電子郵件,寄件者傳送電郵、收件者會在方便時才回覆。他們不用馬上就那麼做。</p>
+
+<p>它也可以用來描述一個程式性的通信環境,例如 {{domxref("Ajax")}} 就是個請求 <a href="/zh-TW/docs/Web/HTTP">HTTP</a> 少量數據的非同步機制。結果會在響應完成時發回,而不是立刻發送。</p>
+
+<h2 id="了解更多">了解更多</h2>
+
+<h3 id="技術資訊">技術資訊</h3>
+
+<ul>
+ <li><a href="/zh-TW/docs/Learn/JavaScript/Client-side_web_APIs/Fetching_data">Fetching data from the server</a>(學習專區)</li>
+ <li>{{glossary("Synchronous","同步")}}</li>
+</ul>