We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c2f508a commit c5b8c8cCopy full SHA for c5b8c8c
1 file changed
docs/bom/indexeddb.md
@@ -30,6 +30,9 @@ IndexedDB 是一个比较复杂的 API,涉及不少概念。它把不同的实
30
- 对象仓库:IDBObjectStore 对象
31
- 索引: IDBIndex 对象
32
- 事务: IDBTransaction 对象
33
+- 操作请求:IDBRequest 对象
34
+- 指针: IDBCursor 对象
35
+- 主键集合:IDBKeyRange 对象
36
37
下面是一些主要的概念。
38
@@ -65,7 +68,7 @@ IndexedDB 数据库有版本的概念。同一个时刻,只能有一个版本
65
68
66
69
## 操作流程
67
70
-IndexedDB 数据库的各种操作,一般是按照下面的流程进行的。
71
+IndexedDB 数据库的各种操作,一般是按照下面的流程进行的。这个部分只给出简单的代码示例,用于快速上手,详细的各个对象的 API 放在后文介绍。
72
73
### 打开数据库
74
0 commit comments