搜尋

首頁  >  問答  >  主體

node.js - mongoose如何同时查询多个字段的多种值

查询网上的手册,都是一些简单的例子,不懂怎样写才能达到下面的需求。

模型是这样的

  msgid: { type: 'string' }, //消息ID
  time: { type: 'string' },
  push: { type: 'number'}, //是否推送消息 1是 0否
  val: {
    id: { type: 'string' },
    username: { type: 'string' },
    avatar: { type: 'string' }, 
    content: { type: 'string' },
    type: { type: 'string', default: 'friend' },
    toid: { type: 'string' },
    toname: { type: 'string' }
  }

msgid的值可能是 123-222 , 222-456 这样的。 “-” 两头是两个用户的id值
我想查询
push为1的值 同时 msgid 中包含222的id,无论在前在后。
按time排序。
只返回val中的数据。

PHPzPHPz2786 天前627

全部回覆(1)我來回復

  • PHPz

    PHPz2017-04-17 15:45:33

    db.data.find({"push":1,"msgid":{"$regex":"[.-222|222-.]+","$options":"i"}}, {"val":1}).sort({"time":1})

    $regex為正規匹配裡面可以寫正規表示式,"$options":"i"不區分大小寫
    find的第二個參數為需要返回的字段1表示返回,0標識不返回
    sort {"time ":1} 1 依time正序,-1 依time倒序

    回覆
    0
  • 取消回覆