亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

mongodb怎么獲取表中記錄數

小億
125
2023-11-16 11:09:27
欄目: 云計算

在MongoDB中,獲取集合中的記錄數可以使用countDocuments()方法。該方法返回一個promise,可以使用then()方法來獲取結果。

以下是一個示例:

const MongoClient = require('mongodb').MongoClient;
const uri = "mongodb+srv://<username>:<password>@<cluster-url>/<database>?retryWrites=true&w=majority";

MongoClient.connect(uri, function(err, client) {
  if(err) {
    console.log('Error occurred while connecting to MongoDB Atlas...\n',err);
  }
  console.log('Connected to MongoDB Atlas...');
  
  const collection = client.db("<database>").collection("<collection>");

  collection.countDocuments()
    .then(count => {
      console.log("Number of documents in the collection: ", count);
    })
    .catch(err => {
      console.log("Error occurred while counting documents:\n", err);
    })
    .finally(() => {
      client.close();
    });
});

請注意,<username><password><cluster-url><database><collection>都需要替換為適當的值。

0
平潭县| 河北区| 隆尧县| 汉源县| 巫山县| 松滋市| 肇州县| 沙田区| 荣昌县| 中西区| 天柱县| 贵州省| 万载县| 南和县| 大冶市| 昌黎县| 孝昌县| 延庆县| 剑川县| 孙吴县| 青川县| 嵩明县| 北京市| 莱阳市| 曲水县| 彝良县| 香格里拉县| 邯郸县| 辽宁省| 清徐县| 疏附县| 盘山县| 定州市| 澄城县| 上犹县| 方山县| 霍城县| 慈利县| 吴桥县| 永州市| 行唐县|