IDBDatabase.createObjectStore() - Web API 接口参考 编辑
IDBDatabase
接口的 createObjectStore()
方法创建并返回一个新的 object store 或 index。
此方法接受一个参数作为 store 的名称,也接受一个可选的参数对象让你可以定义重要的可选属性。你可以用这个属性唯一的标识此 store 中的每个对象。因为参数是一个标识符,所以 store 中的每一个对象都应有此属性并保证此属性唯一。
此方法只能在 versionchange
事务中被调用。
语法
var objectStore = IDBDatabase.createObjectStore(name); var objectStore = IDBDatabase.createObjectStore(name, options);
参数
- name
- 被创建的 object store 的名称。请注意创建空名称的 object store 是被允许的。
- optionalParameters 可选
可选的对象,它的属性是此方法的可选参数,其中包括以下的属性:
Attribute Description keyPath
key path 被用在新的 object store 上。如果为空或未指定,object store 创建时将没有 key path,而是使用 out-of-line keys 。你也能传一个数组作为
keyPath
。autoIncrement
如果为 true
, object store 有一个 key generator. 默认为false
。未知参数将被忽略。
返回值
IDBObjectStore
- 新创建的 object store 对象。
异常
This method may raise a此方法可能会抛出一个 DOMException
带有以下所列其中一种类型的 DOMError
:
Exception | Description |
---|---|
InvalidStateError | 在非 |
TransactionInactiveError | 如果对不存在的源数据库发出请求(例如,已被删除的)。此外,在 Firefox 版本小于 41 中,会抛出误导性的 |
ConstraintError | 数据库中已存同名的对象存储(名字区分大小写) |
InvalidAccessError | 如果 |
Example
// 打开一个数据库
var request = window.indexedDB.open("toDoList", 4);
// This handler is called when a new version of the database
// is created, either when one has not been created before
// or when a new version number is submitted by calling
// window.indexedDB.open().
// This handler is only supported in recent browsers.
request.onupgradeneeded = function(event) {
var db = event.target.result;
db.onerror = function(event) {
note.innerHTML += '<li>Error loading database.</li>';
};
// Create an objectStore for this database
var objectStore = db.createObjectStore("toDoList", { keyPath: "taskTitle" });
// define what data items the objectStore will contain
objectStore.createIndex("hours", "hours", { unique: false });
objectStore.createIndex("minutes", "minutes", { unique: false });
objectStore.createIndex("day", "day", { unique: false });
objectStore.createIndex("month", "month", { unique: false });
objectStore.createIndex("year", "year", { unique: false });
objectStore.createIndex("notified", "notified", { unique: false });
note.innerHTML += '<li>Object store created.</li>';
};
Specification
Specification | Status | Comment |
---|---|---|
Indexed Database API 2.0 createObjectStore() | Recommendation | |
Indexed Database API Draft createObjectStore() | Recommendation |
Browser compatibility
BCD tables only load in the browser
The compatibility table on this page is generated from structured data. If you'd like to contribute to the data, please check out https://github.com/mdn/browser-compat-data and send us a pull request.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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论