注意:
Not to be confused with
IDBCursorWithValue
which is just an
IDBCursor
interface with an additional
value
特性。
IDBCursor
接口在
IndexedDB API
represents a
cursor
for traversing or iterating over multiple records in a database.
The cursor has a source that indicates which index or object store it is iterating over. It has a position within the range, and moves in a direction that is increasing or decreasing in the order of record keys. The cursor enables an application to asynchronously process all the records in the cursor's range.
You can have an unlimited number of cursors at the same time. You always get the same
IDBCursor
object representing a given cursor. Operations are performed on the underlying index or object store.
注意:
IDBCursorWithValue
是
IDBCursor
interface with an additional
value
特性。
IDBCursor.source
只读
IDBObjectStore
or
IDBIndex
that the cursor is iterating. This function never returns null or throws an exception, even if the cursor is currently being iterated, has iterated past its end, or its transaction is not active.
IDBCursor.direction
只读
IDBCursor.key
只读
undefined
. The cursor's key can be any data type.
IDBCursor.primaryKey
只读
undefined
. The cursor's primary key can be any data type.
IDBCursor.request
只读
IDBRequest
that was used to obtain the cursor.
IDBCursor.advance()
Sets the number of times a cursor should move its position forward.
IDBCursor.continue()
key
参数。
IDBCursor.continuePrimaryKey()
Sets the cursor to the given index key and primary key given as arguments.
IDBCursor.delete()
IDBRequest
object, and, in a separate thread, deletes the record at the cursor's position, without changing the cursor's position. This can be used to delete specific records.
IDBCursor.update()
IDBRequest
object, and, in a separate thread, updates the value at the current position of the cursor in the object store. This can be used to update specific records.
Deprecated since Gecko 13 (Firefox 13 / Thunderbird 13 / SeaMonkey 2.10)
This feature is no longer recommended. Though some browsers might still support it, it may have already been removed from the relevant web standards, may be in the process of being dropped, or may only be kept for compatibility purposes. Avoid using it, and update existing code if possible; see the
兼容性表格
at the bottom of this page to guide your decision. Be aware that this feature may cease to work at any time.
These constants are no longer available — they were removed in Gecko 25. You should use the string constants directly instead. ( bug 891944 )
NEXT
:
"next"
: The cursor shows all records, including duplicates. It starts at the lower bound of the key range and moves upwards (monotonically increasing in the order of keys).
NEXTUNIQUE
:
"nextunique"
: The cursor shows all records, excluding duplicates. If multiple records exist with the same key, only the first one iterated is retrieved. It starts at the lower bound of the key range and moves upwards.
PREV
:
"prev"
: The cursor shows all records, including duplicates. It starts at the upper bound of the key range and moves downwards (monotonically decreasing in the order of keys).
PREVUNIQUE
:
"prevunique"
: The cursor shows all records, excluding duplicates. If multiple records exist with the same key, only the first one iterated is retrieved. It starts at the upper bound of the key range and moves downwards.
In this simple fragment we create a transaction, retrieve an object store, then use a cursor to iterate through all the records in the object store. The cursor does not require us to select the data based on a key; we can just grab all of it. Also note that in each iteration of the loop, you can grab data from the current record under the cursor object using
cursor.value.foo
. For a complete working example, see our
IDBCursor example
(
实时查看范例
)。
function displayData() {
var transaction = db.transaction(['rushAlbumList'], "readonly");
var objectStore = transaction.objectStore('rushAlbumList');
objectStore.openCursor().onsuccess = function(event) {
var cursor = event.target.result;
if(cursor) {
var listItem = document.createElement('li');
listItem.innerHTML = cursor.value.albumTitle + ', ' + cursor.value.year;
list.appendChild(listItem);
cursor.continue();
} else {
console.log('Entries all displayed.');
}
};
}
| 规范 | 状态 | 注释 |
|---|---|---|
|
索引数据库 API 2.0
The definition of 'cursor' in that specification. |
推荐 | 初始定义 |
|
索引数据库 API 草案
The definition of 'cursor' in that specification. |
推荐 |
添加
continuePrimaryKey()
and support for binary keys, and the
IDBCursor.request
特性。
|
| 桌面 | 移动 | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|
IDBCursor
|
Chrome
24
|
Edge 12 |
Firefox
16
|
IE 部分支持 10 |
Opera
44
|
Safari 7 |
WebView Android
Yes
|
Chrome Android
25
|
Firefox Android 22 |
Opera Android
43
|
Safari iOS 8 |
Samsung Internet Android
1.5
|
advance
|
Chrome
24
|
Edge 12 |
Firefox
16
|
IE 部分支持 10 | Opera 15 | Safari 7 | WebView Android Yes | Chrome Android Yes | Firefox Android 22 | Opera Android 14 | Safari iOS 8 | Samsung Internet Android Yes |
continue
|
Chrome
24
|
Edge 12 |
Firefox
16
|
IE 部分支持 10 | Opera 15 | Safari 7 | WebView Android Yes | Chrome Android Yes | Firefox Android 22 | Opera Android 14 | Safari iOS 8 | Samsung Internet Android Yes |
continuePrimaryKey
|
Chrome 58 | Edge 79 |
Firefox
51
|
IE ? | Opera 45 | Safari 10.1 | WebView Android 58 | Chrome Android 58 | Firefox Android 51 | Opera Android 43 | Safari iOS 10.3 | Samsung Internet Android 7.0 |
delete
|
Chrome
24
|
Edge 12 |
Firefox
16
|
IE 部分支持 10 | Opera 15 | Safari 7 | WebView Android Yes | Chrome Android Yes | Firefox Android 22 | Opera Android 14 | Safari iOS 8 | Samsung Internet Android Yes |
direction
|
Chrome
24
|
Edge 12 |
Firefox
16
|
IE 部分支持 10 | Opera 15 | Safari 7 | WebView Android Yes | Chrome Android Yes | Firefox Android 22 | Opera Android 14 | Safari iOS 8 | Samsung Internet Android Yes |
key
|
Chrome
24
|
Edge 12 |
Firefox
16
|
IE 部分支持 10 | Opera 15 | Safari 7 | WebView Android Yes | Chrome Android Yes | Firefox Android 22 | Opera Android 14 | Safari iOS 8 | Samsung Internet Android Yes |
primaryKey
|
Chrome
24
|
Edge 12 |
Firefox
16
|
IE 部分支持 10 | Opera 15 | Safari 7 | WebView Android Yes | Chrome Android Yes | Firefox Android 22 | Opera Android 14 | Safari iOS 8 | Samsung Internet Android Yes |
request
|
Chrome 76 | Edge 79 | Firefox 77 | IE 不支持 No | Opera 63 | Safari ? | WebView Android 76 | Chrome Android 76 | Firefox Android 不支持 No | Opera Android 54 | Safari iOS ? | Samsung Internet Android 12.0 |
source
|
Chrome
24
|
Edge 12 |
Firefox
16
|
IE 部分支持 10 | Opera 15 | Safari 7 | WebView Android Yes | Chrome Android Yes | Firefox Android 22 | Opera Android 14 | Safari iOS 8 | Samsung Internet Android Yes |
update
|
Chrome
24
|
Edge 12 |
Firefox
16
|
IE 部分支持 10 | Opera 15 | Safari 7 | WebView Android Yes | Chrome Android Yes | Firefox Android 22 | Opera Android 14 | Safari iOS 8 | Samsung Internet Android Yes |
| Available in workers |
Chrome
24
|
Edge ≤18 | Firefox 37 | IE ? |
Opera
44
|
Safari 7 |
WebView Android
Yes
|
Chrome Android
25
|
Firefox Android 37 |
Opera Android
Yes
|
Safari iOS ? |
Samsung Internet Android
1.5
|
完整支持
部分支持
不支持
兼容性未知
要求使用供应商前缀或不同名称。
IDBDatabase
IDBTransaction
IDBKeyRange
IDBObjectStore
IDBCursor
IDBCursor
IDBCursorSync
IDBCursorWithValue
IDBDatabase
IDBDatabaseException
IDBDatabaseSync
IDBEnvironment
IDBEnvironmentSync
IDBFactory
IDBFactorySync
IDBIndex
IDBIndexSync
IDBKeyRange
IDBObjectStore
IDBObjectStoreSync
IDBOpenDBRequest
IDBRequest
IDBTransaction
IDBTransactionSync
IDBVersionChangeEvent
IDBVersionChangeRequest