mogodb foreach

1.向数组中添加数据

db.test.find({}).forEach(
  function(item){
    item.tg[item.tg.length] = "jqk"
    db.test.save(item);
    }
)

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