Mongoose Document Model.prototype.db函数

Mongoose Document Model.prototype.db函数

Mongoose API的Model.prototype.db属性 用于在数据库中显示与模型相关的信息。 它展示了模型正在使用的连接。

语法:

Model_Name.db

返回: Model.prototype.db 属性返回一个具有许多嵌套对象和属性的对象。

设置 Node.js 应用程序:

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

npm init

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

npm install mongoose

项目结构:

项目的结构将如下所示:

Mongoose Document Model.prototype.db函数

示例1: 在这个示例中,我们使用 mongoose 建立了一个数据库连接,并定义了一个基于 userSchema 的模型,该模型拥有两个列或字段 “name” 和 “age”。最后,我们使用 User 模型的 db 属性,它将返回正在被 User 模型使用的连接。

  • app.js: 将下面的代码写在 app.js 文件中:
// Require mongoose module 
const mongoose = require('mongoose'); 
  
// Set Up the Database connection 
mongoose.connect( 
    'mongodb://localhost:27017/geeksforgeeks', { 
    useNewUrlParser: true, 
    useUnifiedTopology: true
}) 
  
const userSchema = new mongoose.Schema( 
    { name: String, age: Number } 
) 
  
// Defining userSchema model 
const User = mongoose.model('User', userSchema); 
  
// Accessing db property on User model 
const output = User.db 
console.log(output)

运行程序的步骤:

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

node app.js

输出:

Mongoose Document Model.prototype.db函数

示例2: 在这个示例中,我们使用mongoose建立了一个数据库连接,并在studentSchema上定义了一个模型,该模型有三个列或字段“name”、“father_name”和“mother_name”。最后,我们使用Student模型上的db属性,该属性将返回Student模型正在使用的连接。

  • app.js: 将以下代码写入app.js文件中:
// Require mongoose module 
const mongoose = require('mongoose'); 
  
// Set Up the Database connection 
mongoose.connect( 
    'mongodb://localhost:27017/geeksforgeeks', { 
    useNewUrlParser: true, 
    useUnifiedTopology: true
}) 
  
const studentSchema = new mongoose.Schema( 
    { name: String, father_name:  
      String, mother_name: String } 
) 
  
// Defining studentSchema model 
const Student = mongoose.model('Student', studentSchema); 
  
// Accessing db property on  Student model 
const output = Student.db 
console.log(output)

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

node app.js

输出:

Mongoose Document Model.prototype.db函数

参考: https://mongoosejs.com/docs/api/model.html#model_Model-db

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程