IDBObjectStore.put() - Web APIs 编辑
The put()
method of the IDBObjectStore
interface updates a given record in a database, or inserts a new record if the given item does not already exist.
It returns an IDBRequest
object, and, in a separate thread, creates a structured clone of the value and stores the cloned value in the object store. This is for adding new records, or updating existing records in an object store when the transaction's mode is readwrite
. If the record is successfully stored, then a success event is fired on the returned request object with the result
set to the key for the stored record, and the transaction
set to the transaction in which this object store is opened.
The put method is an update or insert method. See the IDBObjectStore.add
method for an insert only method.
Bear in mind that if you have a IDBCursor
to the record you want to update, updating it with IDBCursor.update()
is preferable to using IDBObjectStore.put()
. Doing so makes it clear that an existing record will be updated, instead of a new record being inserted.
Note:
This feature is available in Web Workers.Syntax
let request = objectStore.put(item); let request = objectStore.put(item, key);
Parameters
- item
- The item you wish to update (or insert).
- key Optional
- The primary key of the record you want to update (e.g. from
IDBCursor.primaryKey
). This is only needed for object stores that have anautoIncrement
primary key, therefore the key is not in a field on the record object. In such cases, callingput(item)
will always insert a new record, because it doesn't know what existing record you might want to modify.
Return value
An IDBRequest
object on which subsequent events related to this operation are fired.
Exceptions
This method may raise a DOMException
of one of the following types:
Exception | Description |
---|---|
ReadOnlyError | The transaction associated with this operation is in read-only mode. |
TransactionInactiveError | This IDBObjectStore 's transaction is inactive. |
DataError | Any of the following conditions apply:
|
InvalidStateError | The IDBObjectStore has been deleted or removed. |
DataCloneError | The data being stored could not be cloned by the internal structured cloning algorithm. |
Parameters
- value
- The value to be stored.
- key
- The key to use to identify the record. If unspecified, it results to null. If the object store has a key generator (e.g. autoincrement) the key of the object must be passed in to update the object.
Example
The following example requests a given record title; when that request is successful the onsuccess
function gets the associated record from the IDBObjectStore
(made available as objectStoreTitleRequest.result
), updates one property of the record, and then puts the updated record back into the object store in another request with put()
. For a full working example, see our To-do Notifications app (view example live.)
const title = "Walk dog";
// Open up a transaction as usual
const objectStore = db.transaction(['toDoList'], "readwrite").objectStore('toDoList');
// Get the to-do list object that has this title as it's title
const objectStoreTitleRequest = objectStore.get(title);
objectStoreTitleRequest.onsuccess = () => {
// Grab the data object returned as the result
const data = objectStoreTitleRequest.result;
// Update the notified value in the object to "yes"
data.notified = "yes";
// Create another request that inserts the item back into the database
const updateTitleRequest = objectStore.put(data);
// Log the transaction that originated this request
console.log("The transaction that originated this request is " + updateTitleRequest.transaction);
// When this new request succeeds, run the displayData() function again to update the display
updateTitleRequest.onsuccess = () => {
displayData();
};
};
Specification
Specification | Status | Comment |
---|---|---|
Indexed Database API 2.0 The definition of 'put()' in that specification. | Recommendation | |
Indexed Database API 2.0 The definition of 'put()' in that specification. | Recommendation |
Browser compatibility
BCD tables only load in the browser
See also
- Using IndexedDB
- Starting transactions:
IDBDatabase
- Using transactions:
IDBTransaction
- Setting a range of keys:
IDBKeyRange
- Retrieving and making changes to your data:
IDBObjectStore
- Using cursors:
IDBCursor
- Reference example: To-do Notifications (view example live.)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论