0

我可以在 indexedDb 中使用带有 .upperBound 和 .lowerBound 的复合索引吗?我试过了,它似乎不起作用所以现在我只是在使用

//upper bound on the Date, filter for `A`
IDBKeyRange.bound(['A', '9999-12-12'], ['A', new Date()])

//lower bound on the Date, filter for `A`
IDBKeyRange.bound(['A', new Date()], ['A', '0000-01-01'])

这是一个合理的方法吗?还是我错过了什么?

4

1 回答 1

1

我相信你可以使用复合键,所以,快速猜测,但它是否与“文字”是文字和日期对象是日期对象有关?

编辑:为了更清楚,我的意思是类型必须对齐。'9999-12-12' 与 new Date() 的类型不同。此外,类型必须与属性的类型相对应。在对象中,“A”必须对应一个字符串属性。在对象中,'9999-12-12' 和 new Date() 都必须对应一个字符串(或日期)属性。

因此,请查看对象中的属性类型。如果是字符串,请将新日期更改为使用字符串。如果是日期,请将 '9999-12-12' 更改为日期对象。

于 2013-10-22T18:14:59.813 回答