我正在使用 Dexie(IndexedDb 的库)。我正在通过API来查看是否有一种方法可以在两个日期之间选择事件,并且我看到有.between()
一种使用这种方式的方法:
table.where(indexOrPrimKey).between(lowerBound, upperBound, includeLower, includeUpper)
在所有与数字一起使用的示例中,有人尝试将它与日期一起使用吗?我需要使用特定的日期格式吗?
我正在使用 Dexie(IndexedDb 的库)。我正在通过API来查看是否有一种方法可以在两个日期之间选择事件,并且我看到有.between()
一种使用这种方式的方法:
table.where(indexOrPrimKey).between(lowerBound, upperBound, includeLower, includeUpper)
在所有与数字一起使用的示例中,有人尝试将它与日期一起使用吗?我需要使用特定的日期格式吗?