Query.prototype.box() 用于指定 $box 条件。使用此函数时,$geoWithin 根据网格坐标返回文档。语法:
Query.prototype.box()
参数:该函数有一个数组对象参数,它具有左上坐标和 upper-right 坐标。
返回值:此函数返回查询对象。
安装 Mongoose :
npm install mongoose
安装 mongoose 模块后,您可以使用命令在命令提示符下检查您的 mongoose 版本。
npm mongoose --version
之后,您可以创建一个文件夹并添加一个文件,例如 index.js,如下所示。
范例1:
index.js
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();
var lower_left = [23, -71]
var upper_right= [12, 11]
query.where('loc').within().box(lower_left, upper_right)
query.box({ ll:lower_left, ur:upper_right})
console.log("Geo Location within:",
query._conditions.loc.$geoWithin)
项目结构将如下所示:
使用以下命令运行index.js文件:
node index.js
输出:
Geo Location within: { '$box':[ [ 23, -71 ], [ 12, 11 ] ] }
范例2:
index.js
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();
var lower_left = [21, -33]
var upper_right= [-6, 32]
query.where('loc').within().box(lower_left, upper_right)
query.box({ ll:lower_left, ur:upper_right})
console.log("Geo Location is:",
query._conditions.loc.$geoWithin)
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 Geo Location is: { '$box':[ [ 21, -33 ], [ -6, 32 ] ] }
参考: https://mongoosejs.com/docs/api/query.html#query_Query-box
相关用法
- Mongoose Query.prototype.gte()用法及代码示例
- Mongoose Query.prototype.hint()用法及代码示例
- Mongoose Query.prototype.mod()用法及代码示例
- Mongoose Query.prototype.getUpdate()用法及代码示例
- Mongoose Query.prototype.centerSphere()用法及代码示例
- Mongoose Query.prototype.explain()用法及代码示例
- Mongoose Query.prototype.exec()用法及代码示例
- Mongoose Query.prototype.error()用法及代码示例
- Mongoose Query.prototype.equals()用法及代码示例
- Mongoose Query.prototype.elemMatch()用法及代码示例
- Mongoose Query.prototype.distinct()用法及代码示例
- Mongoose Query.prototype.cursor()用法及代码示例
- Mongoose Query.prototype.comment()用法及代码示例
- Mongoose Query.prototype.catch()用法及代码示例
- Mongoose Query.prototype.collation()用法及代码示例
- Mongoose Query.prototype.cast()用法及代码示例
- Mongoose Query.prototype.batchSize()用法及代码示例
- Mongoose Query.prototype.and()用法及代码示例
- Mongoose Query.prototype.all()用法及代码示例
- Mongoose Query.prototype.lt()用法及代码示例
- Mongoose Query.prototype.lean()用法及代码示例
- Mongoose Query.prototype.intersects()用法及代码示例
注:本文由纯净天空筛选整理自gouravhammad大神的英文原创作品 How does Query.prototype.box() work in Mongoose ?。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。