mongodb $not
如下:field_name字段中不包含hello怀跛,并且不包含word的
db.collection_name.find({"$and": [{ field_name:{$not:/.*hello.*/}},{field_name:{$not: /.*word.*/}}]})
如下:field_name字段中不包含hello怀跛,并且不包含word的
db.collection_name.find({"$and": [{ field_name:{$not:/.*hello.*/}},{field_name:{$not: /.*word.*/}}]})