var fromDate = "1/1/2014";
var toDate = "1/4/2014";
var boundKeyRange = IDBKeyRange.bound(fromDate, toDate, true, true);
index.openCursor(boundKeyRange).onsuccess = function(event) {
var cursor = event.target.result;
if (cursor) {
cursor.continue();
}
};
在上面的示例中,它将从" 1/1/2014"中获取所有记录。到" 1/4/2014"。
我想从" 1/1/2014"到" 1/4/2014" with firstName =" Mark"和lastName =" Devis"。
有可能吗?请帮帮我。