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


Mongoose Document.prototype.toJSON()用法及代碼示例


Mongoose 文檔API.prototype.toJSON()方法Mongoose API 的一部分用於文檔模型。它允許將結果集轉換為 JSON 對象。轉換後的 JSON 對象可以用作參數JSON.stringify()方法。讓我們了解一下toJSON()使用示例的方法。

用法:

document.toJSON( options );

參數:該方法接受單個參數,如下所述:

  • options: 它用於配置方法的各種屬性。

返回值:此方法返回 JavaScript JSON 對象。

設置 Node.js 應用程序:

步驟 1:使用以下命令創建 Node.js 應用程序:

npm init

步驟 2:創建 NodeJS 應用程序後,使用以下命令安裝所需的模塊:

npm install mongoose

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

數據庫結構:數據庫結構如下所示,集合中存在以下文檔。

示例 1:在此示例中,我們將說明以下函數toJSON()方法。我們正在使用該方法將結果集轉換為 JSON 對象。

文件名:app.js

Javascript


// Require mongoose module 
const mongoose = require("mongoose"); 
  
// Set Up the Database connection 
const URI = "mongodb://localhost:27017/geeksforgeeks"; 
  
const connectionObject = mongoose.createConnection(URI, { 
    useNewUrlParser: true, 
    useUnifiedTopology: true, 
}); 
  
const Customer = connectionObject.model( 
    "Customer", 
    new mongoose.Schema({ 
        name: String, 
        address: String, 
        orderNumber: Number, 
    }) 
); 
  
Customer.findById("639ede899fdf57759087a655").then(res => { 
    const jsonObject = res.toJSON(); 
    console.log(jsonObject) 
}).catch(err => { 
    console.log(err); 
})

運行程序的步驟:要運行應用程序,請從項目的根目錄執行以下命令:

node app.js

輸出:

{
  _id: new ObjectId("639ede899fdf57759087a655"),
  name: 'Chintu',
  address: 'IND',
  orderNumber: 9,
  __v: 0
}

示例 2:在此示例中,我們將說明以下函數toJSON()方法。我們將結果轉換為 JSON 對象,然後使用JSON.stringify()方法。最後,我們顯示兩個轉換值的類型。

文件名:app.js

Javascript


// Require mongoose module 
const mongoose = require("mongoose"); 
  
// Set Up the Database connection 
const URI = "mongodb://localhost:27017/geeksforgeeks"; 
  
const connectionObject = mongoose.createConnection(URI, { 
    useNewUrlParser: true, 
    useUnifiedTopology: true, 
}); 
  
const customerSchema = new mongoose.Schema({ 
    name: String, 
    address: String, 
    orderNumber: Number, 
}) 
  
const Customer = connectionObject.model( 
    "Customer", customerSchema 
); 
  
customerSchema.set('toJSON', { virtuals: true }); 
  
Customer 
    .findById("639ede899fdf57759087a655") 
    .exec((error, result) => { 
        if (error) { 
            console.log(error); 
        } else { 
            console.log(typeof result); 
            const jsonObject = result.toJSON(); 
            const stringConverted = JSON.stringify(jsonObject); 
            console.log(typeof stringConverted); 
        } 
    });

運行程序的步驟:要運行應用程序,請從項目的根目錄執行以下命令:

node app.js

輸出:

object
string

參考:https://mongoosejs.com/docs/api/document.html#document_Document-toJSON



相關用法


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