Skip to content

Commit c5b8c8c

Browse files
committed
docs(bom): add indexedDB
1 parent c2f508a commit c5b8c8c

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

docs/bom/indexeddb.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,9 @@ IndexedDB 是一个比较复杂的 API,涉及不少概念。它把不同的实
3030
- 对象仓库:IDBObjectStore 对象
3131
- 索引: IDBIndex 对象
3232
- 事务: IDBTransaction 对象
33+
- 操作请求:IDBRequest 对象
34+
- 指针: IDBCursor 对象
35+
- 主键集合:IDBKeyRange 对象
3336

3437
下面是一些主要的概念。
3538

@@ -65,7 +68,7 @@ IndexedDB 数据库有版本的概念。同一个时刻,只能有一个版本
6568

6669
## 操作流程
6770

68-
IndexedDB 数据库的各种操作,一般是按照下面的流程进行的。
71+
IndexedDB 数据库的各种操作,一般是按照下面的流程进行的。这个部分只给出简单的代码示例,用于快速上手,详细的各个对象的 API 放在后文介绍。
6972

7073
### 打开数据库
7174

0 commit comments

Comments
 (0)