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


Mongoose Query.prototype.map()用法及代码示例


Query.prototype.map() 函数用于运行函数 fn 并将 fn 的返回值视为要解析为查询的新值。传递给 map() 的所有函数函数将在任何 post hook 之后运行。

用法:

Query.prototype.map()

参数:该函数有一个参数fn,它是运行以转换查询结果的函数。返回值:该函数返回查询对象。

Mongoose Installation:

npm install mongoose

安装 mongoose 模块后,您可以使用命令在命令提示符下检查您的 mongoose 版本。



npm mongoose --version

之后,您可以创建一个文件夹并添加一个文件,例如 index.js,如下所示。

数据库:这里使用的示例数据库如下所示:

范例1:

这里,文件名是 index.js

Javascript


const mongoose = require('mongoose');
 
// Database connection
mongoose.connect('mongodb://127.0.0.1:27017/geeksforgeeks', {
    useNewUrlParser:true,
    useCreateIndex:true,
    useUnifiedTopology:true
});
 
// User model
const User = mongoose.model('User', {
    name:{ type:String },
    age:{ type:Number }
});
 
const query = User.find({name:"Lalit"}).map(res => {
     
  console.log("loadedAt property set on the doc "
       + "to tell the time doc was loaded.")
  return res == null ? res:Object.assign(res,
       { loadedAt:new Date() });
});
 
query.exec(function(err, res){
    if(err) console.log(err)
    else console.log(res)
});

项目结构将如下所示:



使用以下命令运行index.js文件:

node index.js

输出:

loadedAt property set on the doc to tell the time doc was loaded.
[
  { _id:5ebc3669a99bde77b2efb9ba, name:'Lalit', age:25, __v:0 },
  loadedAt:2020-07-14T18:22:57.991Z
]

范例2:

这里,文件名是 index.js

Javascript


const express = require('express');
const mongoose = require('mongoose');
const app = express()
 
// Database connection
mongoose.connect('mongodb://127.0.0.1:27017/geeksforgeeks', {
    useNewUrlParser:true,
    useCreateIndex:true,
    useUnifiedTopology:true
});
 
// User model
const User = mongoose.model('User', {
    name:{ type:String },
    age:{ type:Number }
});
 
const query = User.find().map(res => {
     
 console.log("loadedAt property set on the doc "
      + "to tell the time doc was loaded.")
 return res == null ? res:Object.assign(res,
      { loadedAt:new Date() });
 
});
 
query.exec(function(err, res){
    if(err) console.log(err)
    else console.log(res)
});
 
app.listen(3000, function(error ) {
    if(error) console.log(error)
    console.log("Server listening on PORT 3000")
});

项目结构将如下所示:

使用以下命令运行index.js文件:

node index.js

输出:

Server listening on PORT 3000
Server listening on PORT 3000
loadedAt property set on the doc to tell the time doc was loaded.
[
  { _id:5ebb9129a99bde77b2efb809, name:'Gourav', age:10, __v:0 },
  { _id:5ebc3669a99bde77b2efb9ba, name:'Lalit', age:25, __v:0 }, 
  { _id:5ebc367da99bde77b2efb9bf, name:'Piyush', age:5, __v:0 }, 
  { _id:5ebd345f5d2d8a3534b2f391, name:'Manish', age:34, __v:0 },
  loadedAt:2020-07-14T18:24:36.890Z
]

参考: https://mongoosejs.com/docs/api/query.html#query_Query-map




相关用法


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