上記のすべての回答はcursors
を使用しています ただし、mongodbは常にaggregation
を使用することをお勧めします パイプライン。新しい$dateFromString
を使用 mongodb 3.6
で 、非常に簡単です。 https://docs.mongodb.com/ manual / reference / operator / aggregation / dateFromString /
db.collection.aggregate([
{$project:{ created_at:{$dateFromString:{dateString:'$created_at'}}}}
])