get
Summary
Runs the steps for asynchronously executing a request and returns the IDBRequest created by these steps.
Method of apis/indexeddb/IDBObjectStoreapis/indexeddb/IDBObjectStore
Syntax
var object = object.get(key);
Parameters
key
- Data-type
- Blob
The key value of the record to be retrieved.
Return Value
Returns an object of type DOM NodeDOM Node
Notes
Remarks
This method can throw the following DOMException exceptions:
Exception properties | Description |
|
The key parameter value is not valid. |
|
The object store has been deleted or is otherwise unavailable. |
|
The associated transaction is not active. |
Note As of Internet Explorer 10, the code property is deprecated in favor of the name property, which is preferred for standards compliance and future compatibility.
Syntax
Standards information
Attributions
Microsoft Developer Network: [Windows Internet Explorer API reference Article]