MongoDB中转换字符串到日期MongoDB中转换字符串到日期(Converting string

2019-05-17 10:59发布

有没有办法使用MongoDB的外壳采用自定义格式字符串转换为日期

我想转换成 “21 /月/ 2012:16:35:33 -0400” 到今天为止,

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

Answer 1:

您可以使用JavaScript由拉维Khakhkhar提供的第二个链接,或者你将不得不执行一些字符串操作你的原单字符串转换(如一些在你的原始格式的特殊字符不被识别为有效定界符),但一旦你做到这一点,你可以用“新”

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")

下面是您可能会发现有用的(关于蒙戈外壳内数据的修改)一些链接 -

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



Answer 2:

在我来说,我已经与从ClockTime收集转换领域ClockInTime 从字符串到日期类型以下解决方案取得成功:

db.ClockTime.find().forEach(function(doc) { 
    doc.ClockInTime=new Date(doc.ClockInTime);
    db.ClockTime.save(doc); 
    })


Answer 3:

使用MongoDB的4.0及更高版本

$toDate运营商将值转换为日期。 如果该值无法转换为日期, $toDate错误。 如果该值为空或丢失, $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操作的日期/时间字符串转换为Date对象,并有指定的日期格式以及时区选项:

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()来访问文件。 Withing循环,场转换为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)}}
    ) 
};

为了提高性能,尤其是与大集合打交道时,需要使用的优势, 大宗原料药的大量更新,你会在说1000,让你有更好的表现,你不发送每个请求的批次发送操作服务器服务器,只需在每1000个请求一次。

下面演示这种方法中,第一个例子使用MongoDB中版本批量API >= 2.6 and < 3.2 。 它更新集合中的所有文件通过改变created_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这已经不建议使用批量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);


Answer 4:

我曾在MongoDB中存储至极一些字符串曾在MongoDB中,以被重新格式化,以适当和有效的时间字段。

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

但你可以采取easyly这个想法,写自己的正则表达式来解析日期格式:

// 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");
    }
})


Answer 5:

如何使用就像一个图书馆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

最后,在你的下一个蒙戈会议,使用它像这样:

// 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"


Answer 6:

您可以使用$dateFromString这串日期转换为ISO日期聚集

db.collection.aggregate([
  {
    "$project": {
      "date": {
        "$dateFromString": {
          "dateString": "$date"
        }
      }
    }
  }
])


文章来源: Converting string to date in mongodb