我可以在 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'])
这是一个合理的方法吗?还是我错过了什么?