當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Mongoose Query.prototype.then()用法及代碼示例


Mongoose 是 MongoDB 的對象數據建模 (ODM) 庫。它定義了一個強類型模式,具有默認值和模式驗證,稍後將其映射到 MongoDB 文檔。

Mongoose Query API.prototype.then() 方法在執行查詢後返回一個 Promise。如果在執行特定操作時發生任何情況,它將由 catch 塊處理。

用法:

query.then(resolve).catch(reject)

參數:

  • resolve: 沒有錯誤時返回的函數。
  • reject: 發生任何錯誤後返回的函數。

返回類型:該方法返回一個承諾。

Mongoose 模塊的安裝:

第 1 步:您可以訪問安裝 mongoose 模塊的鏈接。您可以使用此命令安裝此軟件包。

npm install mongoose

步驟2:安裝mongoose模塊後,您可以使用命令在命令提示符中檢查您的mongoose版本。

npm version mongoose

步驟 3:之後,您可以創建一個文件夾並添加一個文件,例如 index.js,要運行此文件,您需要運行以下命令。

node index.js

項目結構: 項目結構將如下所示:

示例集合:下麵是函數執行之前數據庫中的示例數據,您可以使用任何 GUI 工具或終端來查看數據庫,就像我們使用 MongoDB compass GUI 工具一樣,如下所示:

示例1:在此示例中,我們正在檢索對拳擊感興趣的所有客戶。

Javascript


// Importing the module  
const mongoose = require('mongoose'); 
  
// Set Up the Database connection 
mongoose.connect( 
    'mongodb://localhost:27017/geeksforgeeks', { 
    useNewUrlParser: true, 
    useUnifiedTopology: true
}) 
  
  
// Defining customerSchema schema 
const customerSchema = new mongoose.Schema( 
    { name: String, interest: Array, orderCount: Number } 
) 
  
  
// Defining customerSchema model 
const Customer = mongoose.model( 
    'Customer', customerSchema); 
  
//Finding the record in the collection  
Customer.find({ interest: "boxing" }).then((res) => { 
    console.log(res) 
}); 

運行應用程序的步驟:使用以下命令運行index.js 文件:

node index.js

示例2:在此示例中,我們通過在 find 方法中傳遞 String 來故意創建錯誤(需要一個對象才能完美運行)並使用捕獲它。抓住( )。

Javascript


// Importing the module 
const mongoose = require('mongoose'); 
  
// Set Up the Database connection 
mongoose.connect( 
    'mongodb://localhost:27017/geeksforgeeks', { 
    useNewUrlParser: true, 
    useUnifiedTopology: true
}) 
  
  
// Defining customerSchema schema 
const customerSchema = new mongoose.Schema( 
    { name: String, interest: Array, orderCount: Number } 
) 
  
  
// Defining customerSchema model 
const Customer = mongoose.model( 
    'Customer', customerSchema); 
  
  
Customer.find("boxng").then((res) => { 
    console.log(res) 
}).catch((err) => { 
    console.log("Man, You got an error") 
    console.log(err) 
}); 

運行應用程序的步驟:使用以下命令運行index.js 文件:

node index.js

參考:https://mongoosejs.com/docs/api/query.html#query_Query-then



相關用法


注:本文由純淨天空篩選整理自devi_johns大神的英文原創作品 Mongoose Query.prototype.then() API。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。