Answers:
更改$type
数据类型的唯一方法是在数据具有正确类型的情况下对数据执行更新。
在这种情况下,您似乎正在尝试将$type
1(双精度)更改为2(字符串)。
因此,只需从数据库加载文档,执行强制转换(new String(x)
),然后再次保存文档。
如果您需要从外壳程序完全以编程方式执行此操作,则可以使用find(...).forEach(function(x) {})
语法。
针对下面的第二条评论。将字段bad
从数字更改为collection中的字符串foo
。
db.foo.find( { 'bad' : { $type : 1 } } ).forEach( function (x) {
x.bad = new String(x.bad); // convert field to string
db.foo.save(x);
});
new String(x.bad)
创建具有0-index-item x.bad
值的字符串集合。""+x.bad
由Simone描述的Variant可以按需工作-创建String值而不是Int32
db.questions.find({_id:{$type:16}}).forEach( function (x) { db.questions.remove({_id:x._id},true); x._id = ""+x._id; db.questions.save(x); });
将字符串字段转换为整数:
db.db-name.find({field-name: {$exists: true}}).forEach(function(obj) {
obj.field-name = new NumberInt(obj.field-name);
db.db-name.save(obj);
});
将Integer字段转换为String:
db.db-name.find({field-name: {$exists: true}}).forEach(function(obj) {
obj.field-name = "" + obj.field-name;
db.db-name.save(obj);
});
NumberLong
按此处使用:db.db-name.find({field-name : {$exists : true}}).forEach( function(obj) { obj.field-name = new NumberLong(obj.field-name); db.db-name.save(obj); } );
用于将字符串转换为int。
db.my_collection.find().forEach( function(obj) {
obj.my_value= new NumberInt(obj.my_value);
db.my_collection.save(obj);
});
用于将字符串转换为双精度。
obj.my_value= parseInt(obj.my_value, 10);
对于浮点数:
obj.my_value= parseFloat(obj.my_value);
new NumberInt()
开始Mongo 4.2
,db.collection.update()
可以接受一个聚合管道,终于使基于自身值的字段的更新:
// { a: "45", b: "x" }
// { a: 53, b: "y" }
db.collection.update(
{ a : { $type: 1 } },
[{ $set: { a: { $toString: "$a" } } }],
{ multi: true }
)
// { a: "45", b: "x" }
// { a: "53", b: "y" }
第一部分{ a : { $type: 1 } }
是匹配查询:
"a"
在其值为双精度时转换为字符串,因此它会匹配"a"
类型为1
(double)的元素。第二部分[{ $set: { a: { $toString: "$a" } } }]
是更新聚合管道:
$set
是新的聚合运算符(Mongo 4.2
),在这种情况下,它会修改字段。"$set"
的值。"a"
"$a"
"$toString"
Mongo 4.2
在更新文档时可以引用文档本身:的新值"a"
基于的现有值"$a"
。"$toString"
,这是引入的新聚合运算符Mongo 4.0
。不要忘记{ multi: true }
,否则只会更新第一个匹配的文档。
如果你投不从双串,你必须在推出不同的转换运营商之间的选择Mongo 4.0
,例如$toBool
,$toInt
,...
如果没有针对您的目标类型的专用转换器,则可以{ $toString: "$a" }
用以下$convert
操作代替:在此表中可以找到{ $convert: { input: "$a", to: 2 } }
的值:to
db.collection.update(
{ a : { $type: 1 } },
[{ $set: { a: { $convert: { input: "$a", to: 2 } } } }],
{ multi: true }
)
db.collection.updateMany( { a : { $type: 1 } }, [{ $set: { a: { $toString: "$a" } } }] )
- multi : true
可以避免使用updateMany
到目前为止,所有答案都使用某些版本的forEach,在客户端迭代所有集合元素。
但是,您可以通过使用聚合管道和$ out阶段来使用MongoDB的服务器端处理:
$ out阶段用新的结果集合原子替换现有的集合。
例:
db.documents.aggregate([
{
$project: {
_id: 1,
numberField: { $substr: ['$numberField', 0, -1] },
otherField: 1,
differentField: 1,
anotherfield: 1,
needolistAllFieldsHere: 1
},
},
{
$out: 'documents',
},
]);
要将字符串类型的字段转换为日期字段,您需要find()
使用forEach()
方法来迭代由该方法返回的游标,在循环内,将该字段转换为Date对象,然后使用$set
运算符更新该字段。
充分利用将Bulk API用于批量更新,该更新可提供更好的性能,因为您将以1000个批次的方式将操作发送到服务器,因为您没有将每个请求发送给服务器,而是将其发送给服务器,因此性能更好。 1000个请求。
下面演示了这种方法,第一个示例使用MongoDB版本中可用的Bulk 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 Date(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
,此版本已弃用Bulk API并使用以下命令提供了一组较新的api bulkWrite()
:
var bulkOps = [];
db.collection.find({"created_at": {"$exists": true, "$type": 2 }}).forEach(function (doc) {
var newDate = new Date(doc.created_at);
bulkOps.push(
{
"updateOne": {
"filter": { "_id": doc._id } ,
"update": { "$set": { "created_at": newDate } }
}
}
);
})
db.collection.bulkWrite(bulkOps, { "ordered": true });
要将int32转换为mongo中的字符串而无需创建数组,只需在您的电话号码中加上“”即可:-)
db.foo.find( { 'mynum' : { $type : 16 } } ).forEach( function (x) {
x.mynum = x.mynum + ""; // convert int32 to string
db.foo.save(x);
});
我需要更改集合中多个字段的数据类型,因此我使用以下内容对文档集合中的多个数据类型进行了更改。回答一个老问题,但可能对其他人有帮助。
db.mycoll.find().forEach(function(obj) {
if (obj.hasOwnProperty('phone')) {
obj.phone = "" + obj.phone; // int or longint to string
}
if (obj.hasOwnProperty('field-name')) {
obj.field-name = new NumberInt(obj.field-name); //string to integer
}
if (obj.hasOwnProperty('cdate')) {
obj.cdate = new ISODate(obj.cdate); //string to Date
}
db.mycoll.save(obj);
});
You can easily convert the string data type to numerical data type.
Don't forget to change collectionName & FieldName.
for ex : CollectionNmae : Users & FieldName : Contactno.
试试这个查询..
db.collectionName.find().forEach( function (x) {
x.FieldName = parseInt(x.FieldName);
db.collectionName.save(x);
});
演示使用猫鼬将字段中间的类型从字符串更改为mongo objectId
Post.find({}, {mid: 1,_id:1}).exec(function (err, doc) {
doc.map((item, key) => {
Post.findByIdAndUpdate({_id:item._id},{$set:{mid: mongoose.Types.ObjectId(item.mid)}}).exec((err,res)=>{
if(err) throw err;
reply(res);
});
});
});
Mongo ObjectId只是此类样式的另一个示例,例如
希望答案会帮助别人的数字,字符串和布尔值。
我在mongodb控制台中使用此脚本进行字符串浮动转换...
db.documents.find({ 'fwtweaeeba' : {$exists : true}}).forEach( function(obj) {
obj.fwtweaeeba = parseFloat( obj.fwtweaeeba );
db.documents.save(obj); } );
db.documents.find({ 'versions.0.content.fwtweaeeba' : {$exists : true}}).forEach( function(obj) {
obj.versions[0].content.fwtweaeeba = parseFloat( obj.versions[0].content.fwtweaeeba );
db.documents.save(obj); } );
db.documents.find({ 'versions.1.content.fwtweaeeba' : {$exists : true}}).forEach( function(obj) {
obj.versions[1].content.fwtweaeeba = parseFloat( obj.versions[1].content.fwtweaeeba );
db.documents.save(obj); } );
db.documents.find({ 'versions.2.content.fwtweaeeba' : {$exists : true}}).forEach( function(obj) {
obj.versions[2].content.fwtweaeeba = parseFloat( obj.versions[2].content.fwtweaeeba );
db.documents.save(obj); } );
而这个在PHP)))
foreach($db->documents->find(array("type" => "chair")) as $document){
$db->documents->update(
array('_id' => $document[_id]),
array(
'$set' => array(
'versions.0.content.axdducvoxb' => (float)$document['versions'][0]['content']['axdducvoxb'],
'versions.1.content.axdducvoxb' => (float)$document['versions'][1]['content']['axdducvoxb'],
'versions.2.content.axdducvoxb' => (float)$document['versions'][2]['content']['axdducvoxb'],
'axdducvoxb' => (float)$document['axdducvoxb']
)
),
array('$multi' => true)
);
}
就我而言,我使用以下
function updateToSting(){
var collection = "<COLLECTION-NAME>";
db.collection(collection).find().forEach(function(obj) {
db.collection(collection).updateOne({YOUR_CONDITIONAL_FIELD:obj.YOUR_CONDITIONAL_FIELD},{$set:{YOUR_FIELD:""+obj.YOUR_FIELD}});
});
}
toString
某些文档领域中使用,这是我编写/使用过的小程序。