recherche

Maison  >  Questions et réponses  >  le corps du texte

node.js - mongoose 查询表中字段为数组,获取这个数组长度大于1的数据

假设存入mongo里面的数据是这样的
{
"a": 1,
"b": 2,
"c": [
"22",
"33",
"44"
]
}

查询条件:类似于{a:1}

伊谢尔伦伊谢尔伦2782 Il y a quelques jours851

répondre à tous(1)je répondrai

  • 迷茫

    迷茫2017-04-17 11:33:17

    db.find({'c.1': {$exists: true}})
    

    répondre
    0
  • Annulerrépondre