db.getCollection('表名字').find({
    "字段1": { "$exists": true },
    "字段2": {
        "$exists": true,
        "$type": "string",
        "$not": /不包含的内容/
    }
})