MongoDB 数组遍历操作 forEach

1、下面集合中的seq类型为double,想修改为int。

{
    "_id" : ObjectId("592e94fee820cc1813f0b9a2"),
    "privateAttrs" : [
        {
            "attrId" : "100",
            "seq" : 0
        },
        {
            "attrId" : "101",
            "seq" : 1
        }
    ]
}
{
    "_id" : ObjectId("592e94fee820cc1813f0b9a3"),
    "privateAttrs" : [
        {
            "attrId" : "102",
            "seq" : 0
        }
    ]
}
2、通过forEach遍历数组:

db.category.find().forEach(
    function(item) {
        item.privateAttrs.forEach(
            function(arr, index) {
                item.privateAttrs[index].seq = new NumberInt(item.privateAttrs[index].seq);
            }
        );
        db.category.save(item);
    }
)
3、forEach 说明

forEach方法中的function回调有三个参数: 第一个参数是遍历的数组内容,第二个参数是对应的数组索引,第三个参数是数组本身

你可能感兴趣的:(mongodb,遍历)