1. db.col.find()
    2. // 更改age字段为Int型
    3. db.col.find().forEach( x => {x.age = NumberInt(x.age); db.col.save(x) } )