IDBDatabase.createObjectStore() - Web APIs 编辑

The createObjectStore() method of the IDBDatabase interface creates and returns a new object store or index.

The method takes the name of the store as well as a parameter object that lets you define important optional properties. You can use the property to uniquely identify individual objects in the store. As the property is an identifier, it should be unique to every object, and every object should have that property.

This method can be called only within a versionchange transaction.

Note:

This feature is available in Web Workers.

Syntax

IDBDatabase.createObjectStore(name);
IDBDatabase.createObjectStore(name, options);

Parameters

name
The name of the new object store to be created. Note that it is possible to create an object store with an empty name.
optionalParameters Optional

An options object whose attributes are optional parameters to the method. It includes the following properties:

AttributeDescription
keyPathThe key path to be used by the new object store. If empty or not specified, the object store is created without a key path and uses out-of-line keys. You can also pass in an array as a keyPath.
autoIncrementIf true, the object store has a key generator. Defaults to false.

Unknown parameters are ignored.

Returns

A new IDBObjectStore.

Exceptions

This method may raise a DOMException with a DOMError of one of the following types:

ExceptionDescription
InvalidStateErrorOccurs if the method was not called from a versionchange transaction callback. For older WebKit browsers, you must call first.
TransactionInactiveErrorOccurs if a request is made on a source database that doesn't exist (e.g. has been deleted or removed.) In Firefox previous to version 41, an InvalidStateError was raised in this case as well, which was misleading; this has now been fixed (see bug 1176165.)
ConstraintErrorAn object store with the given name (based on case-sensitive comparison) already exists in the connected database.
InvalidAccessErrorIf autoIncrement is set to true and keyPath is either an empty string or an array containing an empty string.

Example

// Let us open our database
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>";
};

Specifications

SpecificationStatusComment
Indexed Database API 2.0
The definition of 'createObjectStore()' in that specification.
Recommendation 
Indexed Database API 2.0
The definition of 'createObjectStore()' in that specification.
Recommendation 

Browser compatibility

BCD tables only load in the browser

See also

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据

词条统计

浏览:122 次

字数:7647

最后编辑:6年前

编辑次数:0 次

    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文