我想编写一个函数来用参数查询mongodb数据库。
get_price = function(codes, start_date, end_date){
query_string = '[{"$match":{"filedA":{"$in": codes}, "start_date":start_date, "end_date":end_date}},
{"$project":{"_id":0 }}
]'
}
con$aggregate(pipeline=query_string)
但是构建查询字符串很麻烦。
提前谢谢。