当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Mongoose Document.prototype.toString()用法及代码示例


Mongoose API 的 Mongoose Document API.prototype.toString() 方法用于 Document 模型。它允许以字符串形式获取结果。使用这个方法我们可以将输出转换为String类型。让我们通过一个例子来理解toString()方法。

用法:

document.toString();

参数:该方法不接受任何参数。

返回值:该方法返回字符串格式的值。

设置 Node.js 应用程序:

步骤 1:使用以下命令创建 Node.js 应用程序:

npm init

步骤 2:创建 NodeJS 应用程序后,使用以下命令安装所需的模块:

npm install mongoose

项目结构: 项目结构将如下所示:

数据库结构:数据库结构如下所示,集合中存在以下文档。

示例 1:在此示例中,我们将说明以下函数toString()方法。我们从集合中获取一份文档,并使用以下命令将其结果转换为字符串toString()方法。

文件名: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.find({ name: "Harshit" }).then(res => { 
    console.log(res.toString()); 
}).catch(err => { 
    console.log(err); 
})

运行程序的步骤:要运行应用程序,请从项目的根目录执行以下命令:

node app.js

输出:

{
  _id: new ObjectId("63c1c0294a390b560860be13"),
  name: 'Harshit',
  address: 'Pune',
  orderNumber: 45,
  __v: 0
}

示例 2:在此示例中,我们将说明以下函数toString()方法。最后,我们使用以下命令验证已转换为字符串的结果的类型toString()方法。

文件名: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.find({ _id: "639ede899fdf57759087a653" }).then(res => { 
    const stringData = res.toString(); 
    console.log(typeof stringData) 
}).catch(err => { 
    console.log(err); 
})

运行程序的步骤:要运行应用程序,请从项目的根目录执行以下命令:

node app.js

输出:

string

参考:https://mongoosejs.com/docs/api/document.html#document_Document-toString



相关用法


注:本文由纯净天空筛选整理自kartikmukati大神的英文原创作品 Mongoose Document.prototype.toString() API。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。