5

我有 int 数组要使用 mongo shell 在集合中更新。当我更新它时,它实际上以双格式存储。

var  array =[1,2,3];     // int array as all elements are int 
                         // Update query where path is the collection field
 db.doc.update({},{$set : {“path”:array}},{ upsert: true });  

实际上它存储了:

{
  "_id" : ObjectId("529ae0e70971d81eedf5cb3d"),
  "path" : [1.0, 2.0, 3.0]
}

我是 mongo 的新手,必须在 mongo shell 中运行更新查询。如何避免自动双重转换。

4

1 回答 1

8

Mongoshell 默认将数字视为浮点数。因此,如果您希望它们被视为其他东西,请明确告诉 mongo。对于您的情况,您必须使用NumberInt()

所以var array = [NumberInt("1"), NumberInt("2"), NumberInt("3")];

PS您可能会发现我的另一个答案(类似的)也很有帮助。

于 2013-12-01T08:59:34.393 回答