MongoDB查询将数字字符串转换为数字
要将数字字符串转换为数字,请parseInt()
在MongoDB中使用。让我们创建一个包含文档的集合-
> db.demo208.insertOne( { "value":"50"} ); { "acknowledged" : true, "insertedId" : ObjectId("5e3d92d803d395bdc21346f6") } > db.demo208.insertOne( { "value":"2350"} ); { "acknowledged" : true, "insertedId" : ObjectId("5e3d92dd03d395bdc21346f7") }
在find()
方法的帮助下显示集合中的所有文档-
> db.demo208.find();
这将产生以下输出-
{ "_id" : ObjectId("5e3d92d803d395bdc21346f6"), "value" : "50" } { "_id" : ObjectId("5e3d92dd03d395bdc21346f7"), "value" : "2350" }
以下是将数字字符串转换为数字的查询-
> db.demo208.find().forEach( function (doc) { ... doc.value = parseInt(doc.value); ... db.demo208.save(doc); ...});
在find()
方法的帮助下显示集合中的所有文档-
> db.demo208.find();
这将产生以下输出-
{ "_id" : ObjectId("5e3d92d803d395bdc21346f6"), "value" : 50 } { "_id" : ObjectId("5e3d92dd03d395bdc21346f7"), "value" : 2350 }