报告 MongoDB 和 JavaScript 代码中已弃用的方法的用法。

快速修复用推荐的替代方法替换了已弃用的方法。

示例:


  db.my_collection.insert()

在应用快速修复后:


  db.my_collection.insertOne()