if (!ids || !ids.length) return []
let ctx = this.ctx
let where = {
$or: ids.map(id => ({ key: id }))
}
let names = yield ctx.model.Pages.findAll({ where, attributes: [ 'name', 'key' ] })
这里的 or 是什么意思? 是多个id 之间 or 么 后面是一个list 的对象,这个or 跟 list对象之间的意思是什么?