更新字段类型和字段值
db.getCollection('book').find({}).forEach(
function(X){
x.age = new NumberInt(x.age);// 将字符串转化为数字
db.book.save(x);//保存数据
});
添加字段或更新值
db.getCollection('test').update(
{},
{
$set:{
'createTime':'2017-06-29 08:08',
'updateTime':'2017-06-29 08:08
}
}
);