我有一个这样的 mongo 集合:
Collection :rResponse
{
"_id" : ("59c8248 "),
"correlationId" : ("b92b3 "),
"rtResponse" : {
"rTiming" : {
"servicetime" : "2020-04-17 11:50:42.1053555 (GMT-04:00)"
}
我试图使用查找查询来访问服务时间。
db.rResponsee.rtResponse.rTiming.find( { servicetime: '2020-05-01 08:25:58.4083775 (GMT-04:00)' } );
但它返回 0 行。任何帮助/建议将不胜感激。