39

有没有办法使用 mongodb shell 使用自定义格式将字符串转换为日期

我正在尝试将“21/May/2012:16:35:33 -0400”转换为迄今为止,

有没有办法通过DateFormatter或 方法Date.parse(...)ISODate(....)方法?

4

5 回答 5

45

使用 MongoDB 4.0 及更高版本

$toDate操作员会将值转换为日期。如果该值无法转换为日期,则会$toDate出错。如果值为 null 或缺失,则$toDate返回 null:

您可以在聚合管道中使用它,如下所示:

db.collection.aggregate([
    { "$addFields": {
        "created_at": {
            "$toDate": "$created_at"
        }
    } }
])

以上等价于使用$convert运算符如下:

db.collection.aggregate([
    { "$addFields": {
        "created_at": { 
            "$convert": { 
                "input": "$created_at", 
                "to": "date" 
            } 
        }
    } }
])

使用 MongoDB 3.6 及更高版本

您还可以使用$dateFromString将日期/时间字符串转换为日期对象的运算符,并具有用于指定日期格式和时区的选项:

db.collection.aggregate([
    { "$addFields": {
        "created_at": { 
            "$dateFromString": { 
                "dateString": "$created_at",
                "format": "%m-%d-%Y" /* <-- option available only in version 4.0. and newer */
            } 
        }
    } }
])

使用 MongoDB 版本>= 2.6 and < 3.2

如果 MongoDB 版本没有进行转换的本机运算符,则需要手动迭代方法返回的游标,find()方法是使用forEach()方法或游标方法next()访问文档。使用循环,将字段转换为 ISODate 对象,然后使用$set运算符更新字段,如下例所示,该字段被调用created_at并且当前以字符串格式保存日期:

var cursor = db.collection.find({"created_at": {"$exists": true, "$type": 2 }}); 
while (cursor.hasNext()) { 
    var doc = cursor.next(); 
    db.collection.update(
        {"_id" : doc._id}, 
        {"$set" : {"created_at" : new ISODate(doc.created_at)}}
    ) 
};

为了提高性能,尤其是在处理大型集合时,请利用Bulk API进行批量更新,因为您将以 1000 个批量将操作发送到服务器,这会为您提供更好的性能,因为您不会将每个请求都发送到服务器,每 1000 个请求中只有一次。

下面演示了这种方法,第一个示例使用 MongoDB 版本中可用的 Bulk API >= 2.6 and < 3.2created_at它通过将字段更改为日期字段来更新集合中的所有文档:

var bulk = db.collection.initializeUnorderedBulkOp(),
    counter = 0;

db.collection.find({"created_at": {"$exists": true, "$type": 2 }}).forEach(function (doc) {
    var newDate = new ISODate(doc.created_at);
    bulk.find({ "_id": doc._id }).updateOne({ 
        "$set": { "created_at": newDate}
    });

    counter++;
    if (counter % 1000 == 0) {
        bulk.execute(); // Execute per 1000 operations and re-initialize every 1000 update statements
        bulk = db.collection.initializeUnorderedBulkOp();
    }
})
// Clean up remaining operations in queue
if (counter % 1000 != 0) { bulk.execute(); }

使用 MongoDB 3.2

下一个示例适用于新的 MongoDB 版本3.2,该版本已弃用 Bulk API并提供了一组更新的 api,使用bulkWrite()

var bulkOps = [],
    cursor = db.collection.find({"created_at": {"$exists": true, "$type": 2 }});

cursor.forEach(function (doc) { 
    var newDate = new ISODate(doc.created_at);
    bulkOps.push(         
        { 
            "updateOne": { 
                "filter": { "_id": doc._id } ,              
                "update": { "$set": { "created_at": newDate } } 
            }         
        }           
    );

    if (bulkOps.length === 500) {
        db.collection.bulkWrite(bulkOps);
        bulkOps = [];
    }     
});

if (bulkOps.length > 0) db.collection.bulkWrite(bulkOps);
于 2016-01-17T11:40:34.037 回答
44

在我的情况下,我已经成功使用以下解决方案将 ClockTime 集合中的字段 ClockInTime从字符串转换为日期类型

db.ClockTime.find().forEach(function(doc) { 
    doc.ClockInTime=new Date(doc.ClockInTime);
    db.ClockTime.save(doc); 
    })
于 2013-06-04T13:22:12.860 回答
10

您可以在 Ravi Khakhkhar 提供的第二个链接中使用 javascript,或者您将不得不执行一些字符串操作来转换您的原始字符串(因为原始格式中的某些特殊字符未被识别为有效分隔符)但是一旦你这样做,你可以使用“新”

training:PRIMARY> Date()
Fri Jun 08 2012 13:53:03 GMT+0100 (IST)
training:PRIMARY> new Date()
ISODate("2012-06-08T12:53:06.831Z")

training:PRIMARY> var start = new Date("21/May/2012:16:35:33 -0400")        => doesn't work
training:PRIMARY> start
ISODate("0NaN-NaN-NaNTNaN:NaN:NaNZ")

training:PRIMARY> var start = new Date("21 May 2012:16:35:33 -0400")        => doesn't work    
training:PRIMARY> start
ISODate("0NaN-NaN-NaNTNaN:NaN:NaNZ")

training:PRIMARY> var start = new Date("21 May 2012 16:35:33 -0400")        => works
training:PRIMARY> start
ISODate("2012-05-21T20:35:33Z")

以下是一些您可能会觉得有用的链接(关于修改 mongo shell 中的数据) -

http://cookbook.mongodb.org/patterns/date_range/

http://www.mongodb.org/display/DOCS/Dates

http://www.mongodb.org/display/DOCS/Overview+-+The+MongoDB+Interactive+Shell

于 2012-06-08T13:05:09.640 回答
3

我在 MongoDB Stored 中有一些字符串,必须将其重新格式化为 mongodb 中正确且有效的 dateTime 字段。

这是我的特殊日期格式代码:“2014-03-12T09:14:19.5303017+01:00”

但是您可以轻松地采用这个想法并编写自己的正则表达式来解析日期格式:

// format: "2014-03-12T09:14:19.5303017+01:00"
var myregexp = /(....)-(..)-(..)T(..):(..):(..)\.(.+)([\+-])(..)/;

db.Product.find().forEach(function(doc) { 
   var matches = myregexp.exec(doc.metadata.insertTime);

   if myregexp.test(doc.metadata.insertTime)) {
       var offset = matches[9] * (matches[8] == "+" ? 1 : -1);
       var hours = matches[4]-(-offset)+1
       var date = new Date(matches[1], matches[2]-1, matches[3],hours, matches[5], matches[6], matches[7] / 10000.0)
       db.Product.update({_id : doc._id}, {$set : {"metadata.insertTime" : date}})
       print("succsessfully updated");
    } else {
        print("not updated");
    }
})
于 2014-09-30T16:14:06.270 回答
0

通过编写这样的脚本来使用像momentjs这样的库怎么样:

[install_moment.js]
function get_moment(){
    // shim to get UMD module to load as CommonJS
    var module = {exports:{}};

    /* 
    copy your favorite UMD module (i.e. moment.js) here
    */

    return module.exports
}
//load the module generator into the stored procedures: 
db.system.js.save( {
        _id:"get_moment",
        value: get_moment,
    });

然后在命令行中加载脚本,如下所示:

> mongo install_moment.js

最后,在你的下一个 mongo 会话中,像这样使用它:

// LOAD STORED PROCEDURES
db.loadServerScripts();

// GET THE MOMENT MODULE
var moment = get_moment();

// parse a date-time string
var a = moment("23 Feb 1997 at 3:23 pm","DD MMM YYYY [at] hh:mm a");

// reformat the string as you wish:
a.format("[The] DDD['th day of] YYYY"): //"The 54'th day of 1997"
于 2016-11-08T01:15:30.393 回答