【发布时间】:2018-03-16 18:54:17
【问题描述】:
以下查询抛出错误:
DB.classes
.where("name")
.anyOf(["John", "Rick"])
.or("nickname")
.anyOf(["Joe", "Bill"])
.and("isDummy")
.equals("1")
.toArray().then(()=>{})
如何以正确的方式重写查询?
【问题讨论】:
标签: javascript dexie