Movatterモバイル変換


[0]ホーム

URL:


  1. Web
  2. Web APIs
  3. IDBObjectStore
  4. getAll()

IDBObjectStore: getAll() method

Baseline Widely available

This feature is well established and works across many devices and browser versions. It’s been available across browsers since ⁨January 2020⁩.

ThegetAll() method of theIDBObjectStore interface returns anIDBRequest objectcontaining all objects in the object store matching the specified parameter or allobjects in the store if no parameters are given.

If a value is successfully found, then a structured clone of it is created and set asthe result of the request object.

This method produces the same result for:

  • a record that doesn't exist in the database
  • a record that has an undefined value

To tell these situations apart, you either call

  1. theopenCursor() method with the samekey. That method provides a cursor if the record exists, and no cursor if it does not.
  2. thecount() method with the same key, whichwill return 1 if the row exists and 0 if it doesn't.

Syntax

js
getAll()getAll(query)getAll(query, count)getAll(options)

Parameters

ThegetAll() method can take separate parameters or a single options object containing the parameters as properties.

The parameters can include:

queryOptional

A key orIDBKeyRange to be queried. If this value is not specified, this willdefault to a key range that selects all the records in this object store.

countOptional

Specifies the number of values to return if more than one is found. If it is lowerthan0 or greater than2^32 - 1 aTypeError exception will be thrown.

If an object parameter is specified, its properties can include:

queryOptional

See the earlierquery definition.

countOptional

See the earliercount definition.

directionOptional

An enumerated value specifying the direction in which the objects are traversed. Possible values are:

next

The objects are traversed from the beginning, in increasing key order. This is the default value.

nextunique

The objects are traversed from the beginning, in increasing key order. This will yield the same objects asnext, because duplicate keys are not allowed inIDBObjectStores.

prev

The objects are traversed from the end, in decreasing key order.

prevunique

The objects are traversed from the end, in decreasing key order. This will yield the same objects asprev, because duplicate keys are not allowed inIDBObjectStores.

Return value

AnIDBRequest object on which subsequent events related to this operation are fired.

If the operation is successful, the value of the request'sresult property is anArray of the values of all records matching the given query, up to the value ofcount, ifcount was supplied.

Exceptions

This method may raise aDOMException of one of the following types:

TransactionInactiveErrorDOMException

Thrown if thisIDBObjectStore's transaction is inactive.

DataErrorDOMException

Thrown if key or key range provided contains an invalid key or is null.

InvalidStateErrorDOMException

Thrown if theIDBObjectStore has been deleted or removed.

TypeErrorDOMException

Thrown if thecount parameter is not between0 and2^32 - 1, inclusive.

Specifications

Specification
Indexed Database API 3.0
# ref-for-dom-idbobjectstore-getall①

Browser compatibility

See also

Help improve MDN

Learn how to contribute

This page was last modified on byMDN contributors.


[8]ページ先頭

©2009-2025 Movatter.jp