IDBCursor.continuePrimaryKey() - Web APIs 编辑

The continuePrimaryKey() method of the IDBCursor interface advances the cursor to the to the item whose key matches the key parameter as well as whose primary key matches the primary key parameter.

A typical use case, is to resume the iteration where a previous cursor has been closed, without having to compare the keys one by one.

Calling this method more than once before new cursor data has been loaded - for example, calling continuePrimaryKey() twice from the same onsuccess handler - results in an InvalidStateError being thrown on the second call because the cursor’s got value flag has been unset.

This method is only valid for cursors coming from an index. Using it for cursors coming from an object store will throw an error.

Note:

This feature is available in Web Workers.

Syntax

cursor.continuePrimaryKey(key, primaryKey);

Parameters

key
The key to position the cursor at.
primaryKey
The primary key to position the cursor at.

Exceptions

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

ExceptionDescription
TransactionInactiveErrorThis IDBCursor's transaction is inactive.
DataError

The key parameter may have any of the following conditions:

  • The key is not a valid key.
  • The key is less than or equal to this cursor's position and the cursor's direction is next or nextunique.
  • The key is greater than or equal to this cursor's position and this cursor's direction is prev or prevunique.
InvalidStateErrorThe cursor is currently being iterated or has iterated past its end.
InvalidAccessErrorThe cursor's direction is not prev or next.

Example

here’s how you can resume an iteration of all articles tagged with "javascript" since your last visit:

let request = articleStore.index("tag").openCursor();
let count = 0;
let unreadList = [];
request.onsuccess = (event) => {
    let cursor = event.target.result;
    if (!cursor) { return; }
    let lastPrimaryKey = getLastIteratedArticleId();
    if (lastPrimaryKey > cursor.primaryKey) {
      cursor.continuePrimaryKey("javascript", lastPrimaryKey);
      return;
    }
    // update lastIteratedArticleId
    setLastIteratedArticleId(cursor.primaryKey);
    // preload 5 articles into the unread list;
    unreadList.push(cursor.value);
    if (++count < 5) {
      cursor.continue();
    }
};

Specifications

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

Browser compatibility

BCD tables only load in the browser

See also

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

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

发布评论

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

词条统计

浏览:94 次

字数:5415

最后编辑:6年前

编辑次数:0 次

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