我已经编写了下面的代码来迭代indexedDB中对象存储的行。我使用的是谷歌浏览器浏览器。
'use strict';
var openRequest = indexedDB.open('Library', 1);
var db;
openRequest.onupgradeneeded = function(response)
{
console.debug(1);
response.currentTarget.result.createObjectStore("authors",{ keypath: 'id', autoIncrement: true });
}
openRequest.onsuccess = function(response) {
console.debug('success opening indexeddb');
db = openRequest.result;
findAuthors();
};
function findAuthors() {
var trans = db.transaction('authors', 'readonly');
var authors = trans.objectStore("authors");
var request = authors.openCursor();
request.PREV = true;
request.onsuccess = function(response) {
var cursor = response.target.result;
if (!cursor) {
alert('No records found.');
return;
}
alert('Id: ' + cursor.key + ' Last name: ' + cursor.value.lastName);
cursor.continue();
};
request.onerror = function(response) { // display error
};
}
我的数据库中的记录如下:
目前,迭代按键2,3和4的顺序发生。我想要的是当我开始迭代光标时,我得到的行是键4,然后是3,然后是2,即它们插入的顺序相反。我尝试在游标对象上使用PREV
布尔属性,但它似乎不起作用:
request.PREV = true;
答案 0 :(得分:3)
尝试authors.openCursor(null, 'prev');
另请查看https://developer.mozilla.org/en-US/docs/Web/API/IDBObjectStore/openCursor以获取一些文档。