aboutsummaryrefslogtreecommitdiff
path: root/files/zh-cn/glossary/indexeddb
diff options
context:
space:
mode:
authorPeter Bengtsson <mail@peterbe.com>2020-12-08 14:40:17 -0500
committerPeter Bengtsson <mail@peterbe.com>2020-12-08 14:40:17 -0500
commit33058f2b292b3a581333bdfb21b8f671898c5060 (patch)
tree51c3e392513ec574331b2d3f85c394445ea803c6 /files/zh-cn/glossary/indexeddb
parent8b66d724f7caf0157093fb09cfec8fbd0c6ad50a (diff)
downloadtranslated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.gz
translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.bz2
translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.zip
initial commit
Diffstat (limited to 'files/zh-cn/glossary/indexeddb')
-rw-r--r--files/zh-cn/glossary/indexeddb/index.html19
1 files changed, 19 insertions, 0 deletions
diff --git a/files/zh-cn/glossary/indexeddb/index.html b/files/zh-cn/glossary/indexeddb/index.html
new file mode 100644
index 0000000000..3d1f32ca5d
--- /dev/null
+++ b/files/zh-cn/glossary/indexeddb/index.html
@@ -0,0 +1,19 @@
+---
+title: IndexedDB
+slug: Glossary/IndexedDB
+tags:
+ - API
+ - CodingScripting
+ - Sql
+ - 数据库
+ - 术语表
+translation_of: Glossary/IndexedDB
+---
+<p>IndexedDB 是一个用于在浏览器中储存较大数据结构的 Web {{glossary("API")}}, 并提供索引功能以实现高性能查找. 像其他基于 {{glossary("SQL")}} 的 <a href="https://en.wikipedia.org/wiki/Relational_database_management_system" title="Relational DataBase Management System">关系型数据库管理系统 (RDBMS)</a> 一样, IndexedDB 是一个事务型的数据库系统. 然而, 它是使用 {{glossary("JavaScript")}} 对象而非列数固定的表格来储存数据的.</p>
+
+<h2 id="了解更多">了解更多</h2>
+
+<ul>
+ <li>MDN 页面 {{domxref('IndexedDB_API','IndexedDB API','',1)}}</li>
+ <li><a href="http://w3c.github.io/IndexedDB/">The W3C specification for IndexedDB</a></li>
+</ul>