mongodb 修改字段类型, 现在集合中有一个字段是string,要修改为date类型, 怎么弄 ?
阿神
阿神 2017-05-02 09:19:22
0
3
1049

mongodb 修改字段类型, 现在集合中有一个字段是string,要修改为date类型, 怎么弄 ?

阿神
阿神

闭关修行中......

Antworte allen(3)
漂亮男人

MongoDB是“无模式”的,对于字段没有元数据的概念存在,所以没有办法直接修改字段类型,因为每个文档的字段都有自己的类型。基于这种情况,只能遍历所有的文档逐个修改字段类型。比如原始文档是:

{_id: ObjectId(...), date: "Fri May 20 2016 17:04:27 GMT+0800 (CST)"}

那么需要遍历这个集合逐个修改字段类型

db.coll.forEach(function(doc) {
    db.coll.update({_id: doc._id}, {$set: {date: new Date(doc.date)}});
});
曾经蜡笔没有小新
    db.demo.find({g:{$type:2}}).forEach(function(x){
        
        x.g=new Date();
        db.demo.save(x)
        
        }
)

$type: 是类型。 2为string类型。

黄舟

参考这个 https://zhuanlan.zhihu.com/p/... 可以解决 UTCDatetime

Neueste Downloads
Mehr>
Web-Effekte
Quellcode der Website
Website-Materialien
Frontend-Vorlage