Skip to content

Commit

Permalink
zh-CN: update IDBCursor API (#23440)
Browse files Browse the repository at this point in the history
  • Loading branch information
PassionPenguin authored Sep 7, 2024
1 parent 6f9af19 commit 1fd698c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions files/zh-cn/web/api/idbcursor/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ slug: Web/API/IDBCursor

[IndexedDB API](/zh-CN/docs/IndexedDB) 中的 `IDBCursor` 接口表示一个游标,用于遍历或迭代数据库中的多条记录。

游标有一个源,指示需要遍历哪一个索引或者对象存储区。它在所属区间范围内有一个位置,根据记录健(存储字段)的顺序递增或递减方向移动。游标使应用程序能够异步处理在游标范围内的所有记录。
游标有一个源,指示需要遍历哪一个索引或者对象存储区。它在所属区间范围内有一个位置,根据记录键(存储字段)的顺序递增或递减方向移动。游标使应用程序能够异步处理在游标范围内的所有记录。

你可以在同一时间拥有无数个游标。你总会获得表示给定游标的同样的 `IDBCursor` 对象。在基础索引或对象存储上执行操作。

Expand All @@ -16,7 +16,7 @@ slug: Web/API/IDBCursor
- {{domxref("IDBCursor.advance")}}
- : 设置光标向前移动位置的次数。
- {{domxref("IDBCursor.continue")}}
- : 将游标按它的方向移动到下一个位置,到其健与可选健参数匹配的项
- : 将游标按它的方向移动到下一个位置,到其键与可选键参数匹配的项
- {{domxref("IDBCursor.delete")}}
- : 返回一个 {{domxref("IDBRequest")}} 对象,并且在一个单独的线程中,删除游标位置记录,而不改变游标的位置。这个可以用作删除一些特定的记录。
- {{domxref("IDBCursor.update")}}
Expand Down

0 comments on commit 1fd698c

Please sign in to comment.